Sha256: 4a3dbbfca9424d6a8fe5f97d87f67cccd46d5fbebc85996e5d35f06c68e12fa4

Contents?: true

Size: 550 Bytes

Versions: 3

Compression:

Stored size: 550 Bytes

Contents

# config.ru is used for running rack-based applications. Please do not edit this file without proper understanding of Rack
# or some bad things may happen.

require \"#{app}\"

# Bundler setup
require 'bundler'
Bundler.setup
Bundler.require

# Used so Rack can automatically get updated to file contents without
# a ten second cooldown
use Rack::Reloader, 0

# Used for automatically getting stylesheet and javascript data into
# your markup templates, as well as running the app.
run Rack::Cascade.new([Rack::File.new('assets'), #{app.capitalize}])

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
socks-0.1.8.beta skel/config_ru
socks-0.0.8.beta skel/config_ru
socks-0.0.7.beta skel/config_ru