mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Use web_console 2.0 for 4.2.0.rc1 release
This one replaces the notable web-console mentions in guide and the default Gemfile.
This commit is contained in:
parent
f84ffdd5de
commit
7f864ccd65
2 changed files with 2 additions and 2 deletions
|
@ -52,7 +52,7 @@ Upgrading from Rails 4.1 to Rails 4.2
|
|||
|
||||
### Web Console
|
||||
|
||||
First, add `gem 'web-console', '~> 2.0.0.beta4'` to the `:development` group in your Gemfile and run `bundle install` (it won't have been included when you upgraded Rails). Once it's been installed, you can simply drop a reference to the console helper (i.e., `<%= console %>`) into any view you want to enable it for. A console will also be provided on any error page you view in your development environment.
|
||||
First, add `gem 'web-console', '~> 2.0'` to the `:development` group in your Gemfile and run `bundle install` (it won't have been included when you upgraded Rails). Once it's been installed, you can simply drop a reference to the console helper (i.e., `<%= console %>`) into any view you want to enable it for. A console will also be provided on any error page you view in your development environment.
|
||||
|
||||
### Responders
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ group :development, :test do
|
|||
<%- end -%>
|
||||
|
||||
# Access an IRB console on exception pages or by using <%%= console %> in views
|
||||
gem 'web-console', '~> 2.0.0.beta4'
|
||||
gem 'web-console', '~> 2.0'
|
||||
<%- if spring_install? %>
|
||||
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
||||
gem 'spring'
|
||||
|
|
Loading…
Reference in a new issue