Classes: Base, Gif, Json
7 8 9 10 11 12
# File 'lib/candies/server.rb', line 7 def self.new Rack::Builder.new do use Rack::ContentLength run Candies::Server::Base.new(:gif => Candies::Server::Gif.new, :json => Candies::Server::Json.new) end end