public
Fork of jnewland/git-wiki
Description: Apparently the best way to represent a Git repository is something called an Indirectly Cycling Giraffe. Doc wiki and issue tracking right in your repo. Centralization through decentralization.
Homepage: http://github.com/rue/giraffe
Clone URL: git://github.com/rue/giraffe.git
giraffe / config.ru
100644 19 lines (13 sloc) 0.431 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Default rackup script to run Giraffe on Waves.
#
# Use this only if you have a running server already.
#
 
WAVES = ENV["WAVES"] || File.join(File.dirname(__FILE__), "waves", "lib")
 
$LOAD_PATH.unshift WAVES
 
require "waves"
require "waves/runtime/rackup"
 
# Rack configuration is defined along with the rest
# of it in the application itself. No point moving
# it here.
#
run Waves::Rackup.load(:startup => "run_giraffe_run.rb")