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 spec
To run all tests:
script/rspec
To bundle install for all the projects:
script/bundle
To run some command in all sub-projects:
script/run somecommand
To list out the sub-projects:
script/projects