Web Console for Rails 3
Web Console is great and all, but by default, it only runs on Rails 4. If you can't easily upgrade your application to Rails 4, you can use this build to get to Web Console running on Rails 3.2.
Requirements
While Rails 3.2 is supported, you would still have to be running MRI Ruby 1.9.3 and above. It may run on Rubinius and JRuby, but we haven't tested those yet.
Installation
To install it in your current application, add the following to your Gemfile
.
group :development do
gem 'web-console-rails3'
end
After you save the Gemfile
changes, make sure to run bundle install
and
restart your server for the Web Console to take affect.
By default, it should be available in your development environment under
/console
. The route is not automatically mounted in a production environment
and we strongly encourage you to keep it that way.
More
For more information visit Web Console home page.