Sha256: d445fc3923f039f02c3abd8c9b057247e6dbe5b6617a1756662ab334d25a4bb9

Contents?: true

Size: 420 Bytes

Versions: 1

Compression:

Stored size: 420 Bytes

Contents

# run with:  thin --rackup config.ru -p 4567 start

#use Rack::Static, :urls => ["/stylesheets", "/javascripts", "/images"], :root => "public"

require 'app1'

use Rack::ShowExceptions
use Rack::Lint
use Rack::ContentLength
use Rack::StaticAssets, :logging => true

App = Rack::Builder.new do 
  map '/tatry' do
    run Sinatra::Application
  end
  
  map '/gallery' do
    run Sinatra::Application
  end
end  

run App

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
wbzyl-rack-static-assets-0.0.2 examples/app1/config.ru