public
Fork of zapnap/sinatra-template
Description: A base Sinatra application template with DataMapper, RSpec, and Haml. Just fork and build.
Homepage:
Clone URL: git://github.com/mort/sinatra-template.git
zapnap (author)
Fri Apr 03 17:21:52 -0700 2009
commit  4a290b8f398dbb316a529cf11651572d08f09f4c
tree    e943788c3eda92f6b325c62feda99da8ccab0f7c
parent  496ef198fb002ef6ea641b849e7c522d94b97801
name age message
file MIT-LICENSE Fri Jan 23 11:06:35 -0800 2009 initial import [zapnap]
file README.rdoc Sun Jan 25 10:56:44 -0800 2009 update instructions [zapnap]
file Rakefile Wed Apr 01 21:13:53 -0700 2009 because Rack::Test is the new hotness [zapnap]
file application.rb Wed Mar 25 08:32:01 -0700 2009 backtrace dump should use Kernel.puts [zapnap]
file config.ru Fri Jan 23 12:17:15 -0800 2009 add logging output to rackup [zapnap]
file environment.rb Fri Jan 23 11:06:35 -0800 2009 initial import [zapnap]
directory lib/ Fri Jan 23 11:06:35 -0800 2009 initial import [zapnap]
directory public/ Fri Jan 23 11:06:35 -0800 2009 initial import [zapnap]
directory spec/ Fri Apr 03 17:21:52 -0700 2009 sample spec language cleanup [zapnap]
directory views/ Fri Jan 23 11:06:35 -0800 2009 initial import [zapnap]
README.rdoc

Sinatra Application Template

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

Configuration

Dependencies and all configuration is done in environment.rb. Your database is also set up here. 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