An extension to rack-webconsole that adds the ability to switch between application runtimes within TorqueBox.
Add this line to your application's Gemfile:
gem 'torquebox-webconsole'
Then follow the instructions for
rack-webconsole, replacing any instances of require 'rack/webconsole'
with
require 'torquebox/webconsole'
.
Note: don't add rack-webconsole
to your Gemfile - torquebox-webconsole
will bring it in for you, and currently uses a fork of rack-webconsole
pending
a pull request and release
of the official gem.
Use it just like you would rack-console
. When in the console, the following
TorqueBox specific methods are available to you:
list_runtimes
- returns an array of the available runtime namescurrent_runtime
- returns the name of the runtime that the console is currently attached toswitch_runtime(name)
- attaches the console to the named runtimehelp
- tells you about the above methods
The console will be attached to the web runtime by default, and you will only be able to list/attach to runtimes for the current application.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request