diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-12-15 14:32:20 -0200 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2014-12-15 14:32:20 -0200 |
commit | 9d1a405d4a8f71f90542985032ad8a885d0c1473 (patch) | |
tree | 2f32bc1005ad3521b5fb1b9834eed6f660165aae /railties/lib | |
parent | aa995301d86b8c34a047455f0ce2f2eee877cdda (diff) | |
parent | 8493f44976402b20eb7eafb487ae4213cdb48c94 (diff) | |
download | rails-9d1a405d4a8f71f90542985032ad8a885d0c1473.tar.gz rails-9d1a405d4a8f71f90542985032ad8a885d0c1473.tar.bz2 rails-9d1a405d4a8f71f90542985032ad8a885d0c1473.zip |
Merge pull request #18026 from hbd225/fix_duplicate_web-console_entries
Fix Duplicate web-console entries in Gemfile
Diffstat (limited to 'railties/lib')
-rw-r--r-- | railties/lib/rails/generators/app_base.rb | 10 | ||||
-rw-r--r-- | railties/lib/rails/generators/rails/app/templates/Gemfile | 4 |
2 files changed, 4 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? diff --git a/railties/lib/rails/generators/rails/app/templates/Gemfile b/railties/lib/rails/generators/rails/app/templates/Gemfile index 7027312aa9..c5bd98a30e 100644 --- a/railties/lib/rails/generators/rails/app/templates/Gemfile +++ b/railties/lib/rails/generators/rails/app/templates/Gemfile @@ -32,7 +32,11 @@ group :development, :test do <%- end -%> # Access an IRB console on exception pages or by using <%%= console %> in views + <%- if options.dev? || options.edge? -%> + gem 'web-console', github: "rails/web-console" + <%- else -%> gem 'web-console', '~> 2.0' + <%- end -%> <%- if spring_install? %> # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring gem 'spring' |