Project

atreides

0.0
No commit activity in last 3 years
No release in over 3 years
Atreides is an engine providing a evented CMS following a KISS principle
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Project Readme

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