aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib
diff options
context:
space:
mode:
authorArun Agrawal <arunagw@gmail.com>2013-11-03 22:11:50 +0100
committerArun Agrawal <arunagw@gmail.com>2013-11-03 22:19:17 +0100
commitfae08dd9ca917c09a136d68065a2ea59ae35a6ea (patch)
treee2a418cb630c5e99a1d13359e93c4e881d20b722 /railties/lib
parent2b66f556edfc2a1c4c9bc231b903372984cf8a49 (diff)
downloadrails-fae08dd9ca917c09a136d68065a2ea59ae35a6ea.tar.gz
rails-fae08dd9ca917c09a136d68065a2ea59ae35a6ea.tar.bz2
rails-fae08dd9ca917c09a136d68065a2ea59ae35a6ea.zip
No web-console for now
Diffstat (limited to 'railties/lib')
-rw-r--r--railties/lib/rails/generators/app_base.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/railties/lib/rails/generators/app_base.rb b/railties/lib/rails/generators/app_base.rb
index 1a270a6c8c..6448e5eda9 100644
--- a/railties/lib/rails/generators/app_base.rb
+++ b/railties/lib/rails/generators/app_base.rb
@@ -109,7 +109,6 @@ module Rails
assets_gemfile_entry,
javascript_gemfile_entry,
jbuilder_gemfile_entry,
- webconsole_gemfile_entry,
sdoc_gemfile_entry,
@extra_entries].flatten.find_all(&@gem_filter)
end
@@ -261,11 +260,6 @@ module Rails
GemfileEntry.version('jbuilder', '~> 1.2', comment)
end
- def webconsole_gemfile_entry
- comment = 'Run `rails console` in the browser. Read more: https://github.com/rails/web-console'
- GemfileEntry.new('web-console', nil, comment, group: :development)
- end
-
def sdoc_gemfile_entry
comment = 'bundle exec rake doc:rails generates the API under doc/api.'
GemfileEntry.new('sdoc', nil, comment, { group: :doc, require: false })