Skip to content

engineyard/rails_dev_directory

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

69 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Engine Yard Rails Development Directory Web Application

Bootstrapping

To get set up, first up, create your MySQL database:

rake db:create

Then run the bootstrap task:

rake bootstrap

The bootstrap task will ask you for a username and password for a regular user that will have ownership of the provider that is created, as well as another user that will have admin rights.

You’ll also need to create a site_config.yml file in the config/ dir. You can start with the example:

cp config/site_config.yml.example config/site_config.yml

Running the unit tests

Create the test database…

rake testing db:create

… and populate it:

rake db:test:clone

Run the tests:

rake spec

or using ZenTest

autospec

Running the cucumber acceptance tests

cucumber features

or add them to your ZenTests:

AUTOFEATURE=true autospec