Home > bioviz-sinatra

bioviz-sinatra

Bioviz-sinatra is a project mainly written in JAVASCRIPT and RUBY, based on the MIT license.

Show gene expression using brain regions

= Sinatra Application Template

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

Updated to work with Ruby 1.9.2 and RSpec 2.x

== 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 bundle check / bundle install rake db:migrate ruby application.rb