public
Description: A base Sinatra application template with DataMapper, RSpec, and Haml. Just fork and build.
Homepage:
Clone URL: git://github.com/zapnap/sinatra-template.git
name age message
file MIT-LICENSE Fri Jan 23 11:06:35 -0800 2009 initial import [zapnap]
file README.rdoc Fri Apr 03 17:12:33 -0700 2009 update usage instructions [zapnap]
file Rakefile Fri Apr 03 17:11:37 -0700 2009 modify defaults to use CouchDB [zapnap]
file application.rb Wed Mar 25 08:32:01 -0700 2009 backtrace dump should use Kernel.puts [zapnap]
file config.ru Sun Aug 16 08:00:07 -0700 2009 fix sinatra logging under passenger [zapnap]
file environment.rb Fri Apr 03 17:11:37 -0700 2009 modify defaults to use CouchDB [zapnap]
directory lib/ Fri Apr 03 17:11:37 -0700 2009 modify defaults to use CouchDB [zapnap]
directory public/ Fri Jan 23 11:06:35 -0800 2009 initial import [zapnap]
directory spec/ Fri Apr 03 17:11:37 -0700 2009 modify defaults to use CouchDB [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 CouchDB, RSpec, and Haml, all ready to go.

Configuration

Dependencies and all configuration is done in environment.rb. Your database (CouchDB) is also set up here. Databases for different environments will be created as needed; just set the connection string and make sure CouchDB is running.

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

  ruby application.rb