Skip to content

the88/Atreides

Folders and files

NameName
Last commit message
Last commit date

Latest commit

99b96b5 · Feb 26, 2013

History

85 Commits
Feb 26, 2013
Nov 7, 2012
Jun 11, 2012
Feb 26, 2013
Jun 11, 2012
Nov 7, 2012
Nov 7, 2012
Nov 7, 2012
Nov 27, 2012
Jun 11, 2012
Apr 27, 2012
Jun 11, 2012
Dec 11, 2012
Jun 11, 2012

Repository files navigation

Atreides

Installation guide

rails new cool_website
cd cool_website
echo "gem 'atreides'" >> Gemfile
bundle install # or bundle update
rails g atreides
rake db:migrate
rails s

Then visit http://localhost:3000/admin to get started.

Many of the plugins require configuration settings. See config/settings.yml.

Running the tests:

bundle exec rake spec
bundle exec cucumber

To use spork, first launch a Sport server like this:

RAILS_ENV=test spork rspec &2> /dev/null
RAILS_ENV=test spork cucumber &2> /dev/null

Then, add the command-line option --drb to your RSpec or Cucumber command