├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── Procfile ├── README.md └── web.rb /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travis-ci/build-stages-demo/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | gem 'sinatra' 3 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travis-ci/build-stages-demo/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: bundle exec ruby web.rb -p $PORT 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/travis-ci/build-stages-demo/HEAD/README.md -------------------------------------------------------------------------------- /web.rb: -------------------------------------------------------------------------------- 1 | require 'sinatra' 2 | 3 | get '/' do 4 | "Hello, world" 5 | end 6 | --------------------------------------------------------------------------------