Sha256: 06e17546d296fef23ae9818f30f2faf1044ce35735d0090f0d2c9ea25aab4cbc
Contents?: true
Size: 362 Bytes
Versions: 63
Compression:
Stored size: 362 Bytes
Contents
class TestApp1 < Sinatra::Base get '/' do 'TestApp1 Index' end get '/route' do 'TestApp1 route' end end class TestApp2 < Sinatra::Base get '/' do 'TestApp2 Index' end get '/route' do 'TestApp2 route' end end RackApp1 = Proc.new {|env| [200, {'Content-Type' => 'text/plain'}, ["This is an app. #{env.inspect}"]] }
Version data entries
63 entries across 63 versions & 7 rubygems