aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/app_base.rb
diff options
context:
space:
mode:
authorNorimasaAndo <norimasa.ando@gmail.com>2014-12-14 21:23:44 +0900
committerNorimasaAndo <norimasa.ando@gmail.com>2014-12-14 21:25:26 +0900
commit8493f44976402b20eb7eafb487ae4213cdb48c94 (patch)
tree6e7d242718d7882b762084b2452f6e93dcfdb9b9 /railties/lib/rails/generators/app_base.rb
parent870519395f4adfcfe35054b76d3db24662871569 (diff)
downloadrails-8493f44976402b20eb7eafb487ae4213cdb48c94.tar.gz
rails-8493f44976402b20eb7eafb487ae4213cdb48c94.tar.bz2
rails-8493f44976402b20eb7eafb487ae4213cdb48c94.zip
Fix Duplicate web-console entries in Gemfile
Diffstat (limited to 'railties/lib/rails/generators/app_base.rb')
-rw-r--r--railties/lib/rails/generators/app_base.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/railties/lib/rails/generators/app_base.rb b/railties/lib/rails/generators/app_base.rb
index 518277a254..3db5b50ad6 100644
--- a/railties/lib/rails/generators/app_base.rb
+++ b/railties/lib/rails/generators/app_base.rb
@@ -111,7 +111,6 @@ module Rails
jbuilder_gemfile_entry,
sdoc_gemfile_entry,
psych_gemfile_entry,
- console_gemfile_entry,
@extra_entries].flatten.find_all(&@gem_filter)
end
@@ -267,15 +266,6 @@ module Rails
GemfileEntry.new('sdoc', '~> 0.4.0', comment, group: :doc)
end
- def console_gemfile_entry
- comment = 'Use Rails Console on the Browser'
- if options.dev? || options.edge?
- GemfileEntry.github 'web-console', 'rails/web-console', nil, comment
- else
- []
- end
- end
-
def coffee_gemfile_entry
comment = 'Use CoffeeScript for .coffee assets and views'
if options.dev? || options.edge?