Sha256: 30bb180e138def246fc7b8acfb556c5f60c468ba97ba176087a6ffbca193cf4e
Contents?: true
Size: 1.44 KB
Versions: 7
Compression:
Stored size: 1.44 KB
Contents
# EMS - Editorial Management System The EMS is a management system that can be used as an engine for any blog or website rolled out on Rails. ## Architecture As mentioned before, the EMS is contained within a mountable engine. For more information on mountable engines please visit http://guides.rubyonrails.org/engines.html ### Authentication and Ability management Authentication, currently the EMS only supports the editors ability, when needed other abilities can be easily added. The Editor is the _super_ user of the EMS. Also at the moment every EMS user can see every article, this should be controlled with the Author credential. * Editor * Author The editor is the only ability with which you can post publications. The author is only able to curate and draft publications. The actual task of setting these live is left to the Editor. This enables the editor to review any content about to go live. To enable the CanCan ability management add the following to your authentications user model: `has_and_belongs_to_many :ems_roles` /private/var/www/html/development/projects/rails/org.wiki/Production-Workflow.md ### Installation: To install the EMS simply follow these steps: 1. include the EMS as a dependency in your Gemfile: `gem 'ems', :git => 'git://github.com/thebeansgroup/ems.git'` 2. mount the engine in your applications `config/routes.rb` `mount Ems::Engine => "/ems"` 3. install the engines migrations: `rake ems:install:migrations`
Version data entries
7 entries across 7 versions & 1 rubygems
Version | Path |
---|---|
ems-0.1.12 | README.md |
ems-0.1.11 | README.md |
ems-0.1.10 | README.md |
ems-0.1.9 | README.md |
ems-0.1.8 | README.md |
ems-0.1.7 | README.md |
ems-0.1.6 | README.md |