public
Description: A sinatra based interface for browsing and admiring your gems
Homepage: http://code.quirkey.com/gembox
Clone URL: git://github.com/quirkey/gembox.git
gembox / config.ru
100644 9 lines (8 sloc) 0.194 kb
1
2
3
4
5
6
7
8
9
# To use with thin
# thin start -p PORT -R config.ru
require File.join(File.dirname(__FILE__), 'lib', 'gembox')
 
disable :run
Gembox::App.set({
  :environment => :production
})
run Gembox::App