├── README ├── .gitignore ├── tmp └── tmp.txt ├── Gemfile ├── public └── favicon.ico ├── config.ru └── Gemfile.lock /README: -------------------------------------------------------------------------------- 1 | The house. 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .bundle/* 2 | -------------------------------------------------------------------------------- /tmp/tmp.txt: -------------------------------------------------------------------------------- 1 | temporary stuff 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source :rubygems 2 | gem "sinatra" 3 | 4 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sandbox/branchcorwinian.www/master/public/favicon.ico -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- 1 | require 'rubygems' 2 | require 'sinatra' 3 | 4 | get '/' do 5 | "Welcome" 6 | end 7 | 8 | run Sinatra::Application 9 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: http://rubygems.org/ 3 | specs: 4 | rack (1.2.2) 5 | sinatra (1.2.1) 6 | rack (~> 1.1) 7 | tilt (< 2.0, >= 1.2.2) 8 | tilt (1.2.2) 9 | 10 | PLATFORMS 11 | ruby 12 | 13 | DEPENDENCIES 14 | sinatra 15 | --------------------------------------------------------------------------------