Glimpse for Rack - A client side Glimpse into whats going on in your server
The Glimpse "theory of operation" is that server modules or plugins expose
application, configuration, diagnostic, or environment information. This
project provides Glimpse for any Rack-based framework or application.
% gem install glimpse
# add a use line to your builder
require 'rack/glimpse'
Rack::Builder.new do
use Rack::Glimpse, {
:glimpse => { :enabled => false, :request_limit => '15', :logging_enabled => false, :cache_enabled => true, :ip_forwarding_enabled => false },
:ip_addresses => {},
:plugin_blacklist => {},
:url_blacklist => {},
:content_types => {},
:environments => {}
}
run Hello.new
end
Read the documentation for more information.
% cd ~/projects
% git clone git@github.com:user/Glimpse.Rack.git && cd Glimpse.Rack
% bundle install
% bundle exec rake test
Glimpse is licensed under the ??? license.