Pastie now auto-senses if line-wrap is a bad or good idea. Feedback?
## mark a section (Learn more)
require 'jruby/rack' module Rack module Handler class Grizzly def initialize(rack_app) @rack_app = rack_app end def call(env) JRuby::Rack::Response.new(@rack_app.call(env)) end end end end
This paste will be private.
From the Design Piracy series on my blog: