I am doing a simple Rails 2.3.18 application. I've put the gem 'rack-webconsole' in the Gemfile and run the bundle install. I've put the lines..
require 'rack/webconsole'
ActionController::Dispatcher.middleware.insert_after 1, Rack::Webconsole
Rack::Webconsole.inject_jquery = true
..in my application's config/initializers/webconsole.rb. When i run the server and press ` while viewing the page in localhost, the console isnt firing up. Am i doing something wrong here, or does the console not support Rails 2.x.x apps?