Rack::Upcaser
Rack middleware which uppercases your app's responses, built as an example/demo.
Usage
Add it to your app's Gemfile
:
gem 'rack-uppercase'
Add it to your config.ru
file, before running your app:
use Rack::Upcaser
If your app is Rails-based, you can add it in your config/application.rb
instead:
config.middleware.use Rack::Uppercase
(Read the Rails on Rack guide to learn more).
Development
Install the dependencies with bundle install
.
Run the tests with bundle rake
.