tsykoduk / sinatra-template forked from zapnap/sinatra-template

A base Sinatra application template with ActiveRecord, RSpec, and erb. Just fork and build. Based on zapnap's datamapper based template

This URL has Read+Write access

zapnap (author)
Sat Oct 17 14:31:26 -0700 2009
tsykoduk (committer)
Mon Oct 26 20:58:35 -0700 2009
name age message
file MIT-LICENSE Loading commit data...
file README.rdoc
file Rakefile
file application.rb
file config.ru Sun Aug 16 08:00:07 -0700 2009 fix sinatra logging under passenger [zapnap]
file database.log
directory db/
file environment.rb
directory lib/
directory public/ Fri Jan 23 11:06:35 -0800 2009 initial import [zapnap]
directory script/ Sat Oct 17 14:31:26 -0700 2009 add console [zapnap]
directory spec/
directory views/
README.rdoc

Sinatra Application Template

A base Sinatra application template. Just fork and build. Yay! Includes ActiveRecord, RSpec, and erb, all ready to go.

Configuration

Dependencies and all configuration is done in environment.rb. Your database is set up in db/database.yml. Migrations are placed in db/migrations. rake db:migrate will migrate to the database set up in database.yml. ActiveRecord 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 or just rake

Getting Started

  rake db:migrate
  ruby application.rb