Skip to content

Sinatra application template with DataMapper, RSpec, and Haml. Deployable to Heroku.

License

Notifications You must be signed in to change notification settings

andrewkolesnikov/sinatra-pro-template

 
 

Repository files navigation

Sinatra Application Template

A base Sinatra application template. Just fork and build. Yay! Includes DataMapper, RSpec, and Haml, all ready to go. Deployable to Heroku.

Configuration

Dependencies and all configuration and database is in environment.rb. DataMapper will use sqlite3 by default. Tests use the sqlite3-memory adapter (no configuration needed).

Add your controller actions in application.rb. Views for these actions are placed in the views directory. Static files, including a stock stylesheet, go in the public directory. Models go in the lib directory and are auto-loaded.

Testing

Add your specs in spec; just require spec_helper.rb to pre-configure the test environment. A number of samples are provided (including a sample model, which can be removed). To run the specs:

rake spec

Getting Started

$ rake db:migrate; ruby application.rb; open 'http://localhost:4567'

Spawning a site on heroku

Edit cp spawn.heroku.example.sh spawn.heroku.sh Then run spawn.heroku.sh

About

Sinatra application template with DataMapper, RSpec, and Haml. Deployable to Heroku.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 89.9%
  • Shell 10.1%