├── .gitignore ├── Gemfile ├── Gemfile.lock ├── README.md ├── app.rb ├── config.ru ├── config.yaml.example └── photo.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegraham/dynosaur/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegraham/dynosaur/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegraham/dynosaur/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegraham/dynosaur/HEAD/README.md -------------------------------------------------------------------------------- /app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegraham/dynosaur/HEAD/app.rb -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- 1 | require './app' 2 | run Sinatra::Application 3 | -------------------------------------------------------------------------------- /config.yaml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegraham/dynosaur/HEAD/config.yaml.example -------------------------------------------------------------------------------- /photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevegraham/dynosaur/HEAD/photo.jpg --------------------------------------------------------------------------------