Sha256: 70c3190fbf62ad6142cdfdb63b5fa316a0977760e6b14007e55f5ee045e82a37
Contents?: true
Size: 1.4 KB
Versions: 36
Compression:
Stored size: 1.4 KB
Contents
#\ --warn --port 8008 --pid ./rack.pid $LOAD_PATH.unshift File.expand_path(File.join(File.dirname(__FILE__), %w[lib])) require 'rubygems' require 'bundler/setup' require 'rack' require 'ruby_app/rack/application' require 'ruby_app/rack/route' require 'ruby_app/version' require '_APPLICATION_DOWNCODE_/application' require '_APPLICATION_DOWNCODE_/session' require '_APPLICATION_DOWNCODE_/version' use Rack::ShowExceptions use Rack::Session::Pool use Rack::Reloader use Rack::ContentLength map '/favicon.ico' do run Rack::File.new(File.join(RubyApp::ROOT, %w[resources favicon.ico])) end map '/ruby_app/resources' do run Rack::File.new(File.join(RubyApp::ROOT, %w[resources])) end map '/_APPLICATION_DOWNCODE_/resources' do run Rack::File.new(File.join(_APPLICATION_UPCODE_::ROOT, %w[resources])) end map '/' do use RubyApp::Rack::Application, :application_class => _APPLICATION_UPCODE_::Application, :session_class => _APPLICATION_UPCODE_::Session, :log_path => File.join(_APPLICATION_UPCODE_::ROOT, %w[log application.log]), :configuration_paths => File.join(_APPLICATION_UPCODE_::ROOT, %w[config.yml]), :default_language => :en, :translations_paths => File.join(_APPLICATION_UPCODE_::ROOT, %w[translations]) run RubyApp::Rack::Route.new end
Version data entries
36 entries across 36 versions & 1 rubygems