Fetch it directly from Github:
gem 'abc', github: 'grounded/afterburnercms'TODO: Fill this in
You need to mount both the backend (administrative section) and the frontend (user-facing section) in your rails app. This can be accomplished by adding the following to your config/routes.rb:
mount Abc::Backend::Engine => '/admin'
mount Abc::Frontend::Engine => '/'NOTE: Do not use the :as option when mounting the Afterburner engines. This will yield unfavorable results / all manner of brokenness.
To run the tests inside a subproject (i.e. /core):
bundle
bundle exec rspec specTo run all tests:
script/rspecTo bundle install for all the projects:
script/bundleTo run some command in all sub-projects:
script/run somecommandTo list out the sub-projects:
script/projects
