aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails
diff options
context:
space:
mode:
Diffstat (limited to 'railties/lib/rails')
-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 })