├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Procfile ├── README.md ├── config.ru └── run.sh /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineyard/onefilerailsapp/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineyard/onefilerailsapp/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineyard/onefilerailsapp/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: bundle exec puma -p $PORT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineyard/onefilerailsapp/HEAD/README.md -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/engineyard/onefilerailsapp/HEAD/config.ru -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- 1 | bundle exec puma -p 3000 2 | --------------------------------------------------------------------------------