diff options
author | Genadi Samokovarov <gsamokovarov@gmail.com> | 2014-08-18 02:03:58 +0300 |
---|---|---|
committer | Genadi Samokovarov <gsamokovarov@gmail.com> | 2014-08-18 02:03:58 +0300 |
commit | 07ca1d3ab6a51635df5e84f70d00de5c8962457c (patch) | |
tree | 91096148e42a5335854874884ebf57f34f029c1f | |
parent | 8f15565de879bd40c8390884d1d31e52de240323 (diff) | |
download | rails-07ca1d3ab6a51635df5e84f70d00de5c8962457c.tar.gz rails-07ca1d3ab6a51635df5e84f70d00de5c8962457c.tar.bz2 rails-07ca1d3ab6a51635df5e84f70d00de5c8962457c.zip |
Lock web-console to 2.0.0.beta1 for the first 4.2 beta
The console on exception code isn't available on the stable releases
yet. Lock it for now, so the beta users get a sneak peak of the console
features.
-rw-r--r-- | railties/lib/rails/generators/rails/app/templates/Gemfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/generators/rails/app/templates/Gemfile b/railties/lib/rails/generators/rails/app/templates/Gemfile index 8b51fda359..d6311829fa 100644 --- a/railties/lib/rails/generators/rails/app/templates/Gemfile +++ b/railties/lib/rails/generators/rails/app/templates/Gemfile @@ -31,7 +31,7 @@ group :development, :test do <%- end -%> # Access an IRB console on exceptions page and /console in development - gem 'web-console' + gem 'web-console', '2.0.0.beta1' <%- if spring_install? %> # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring gem 'spring' |