Sha256: ff0d3c01b0f38c39f323d58548303603351c6fc113268874e7d45e50e81e3b3f
Contents?: true
Size: 823 Bytes
Versions: 13
Compression:
Stored size: 823 Bytes
Contents
= ECM CMS 2 Backend = Installation Add it to your Gemfile: # Gemfile gem 'route_translator' gem 'itsf_backend' gem 'ecm_cms2_backend' Generate the initializers: rails g itsf:backend:install rails g ecm:cms:backend:install Register the backend in the ITSF Backend configuration: # config/initializers/itsf_backend.rb Itsf::Backend.configure do |config| config.backend_engines = [ Ecm::Cms::Backend::Engine ] end Mount the routes: # config/routes.rb localized do mount Itsf::Backend::Engine => '/backend' mount Ecm::Cms::Backend::Engine => '/backend/ecm/cms/' end = How to run specs gem install bundler bundle cd spec/dummy && rake db:migrate RAILS_ENV=test && cd ../.. guard This project rocks and uses MIT-LICENSE.
Version data entries
13 entries across 13 versions & 1 rubygems