├── .gitignore ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── README.md ├── config.ru ├── model.rb └── webserver.rb /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianThorn/ruby-docker-skeleton/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianThorn/ruby-docker-skeleton/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianThorn/ruby-docker-skeleton/HEAD/README.md -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianThorn/ruby-docker-skeleton/HEAD/config.ru -------------------------------------------------------------------------------- /model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianThorn/ruby-docker-skeleton/HEAD/model.rb -------------------------------------------------------------------------------- /webserver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SebastianThorn/ruby-docker-skeleton/HEAD/webserver.rb --------------------------------------------------------------------------------