Sha256: c065f23f90c714ce5dddf5006d3756ab5f2021eb4414bdd752074fede4f7504e

Contents?: true

Size: 1.73 KB

Versions: 17

Compression:

Stored size: 1.73 KB

Contents

= ECM CMS 2

= End-User documentation

Please look at the[link:doc] Folder.

= Migrating from 1.x.x to 2.0.0

Add active_admin-awesome_nested_set to your gemfile, if you are using activeadmin:

    # Gemfile
    gem 'active_admin-awesome_nested_set'

= Prerequisites

if you are using activeadmin as backend, ecm_cms2 comes with admin files to provide a backend. In that case, you'll need active_admin-awesome_nested_set. Add it to your gemfile:

    # Gemfile
    gem 'active_admin-awesome_nested_set'

= Installation

Add it to your bundle:

  # Gemfile:
  gem 'ecm_cms2'

Install your bundle:

  > bundle install

Install the intializer:

  > rails g ecm:cms:install

Install the locales

  > rails g ecm:cms:locales

Generate migrations and migrate:

  > rake ecm_cms_engine:install:migrations
  > rake db:migrate

= Configuring localized routing

Add the routes to your routing file:

  # config/routes.rb:
  localized do
    Ecm::Cms::Routing.routes(self)
  end
  root to: redirect("/#{I18n.locale}")

= Optional: Generating example/default data

There is a task to prepopulate your database tables with example data.

Warning: *RUNNING THIS WILL DELETE ALL OF YOUR CMS DATA AND REPLACE IT WITH EXAMPLE DATA!*

  > rake ecm:cms:db:populate!

= Linking to pages

    <%= link_to 'My Page', page_path(i18n_locale: I18n.locale, page: 'my-page') %>

= Using partials form the database in other controllers

    # app/controllers/application_controller.rb
    class ApplicationController < ActionController::Base
      prepend_view_path ::Ecm::Cms::PartialResolver.instance
      ...
    end

= Running specs

    gem install bundler
    bundle
    cd spec/dummy && rake db:migrate RAILS_ENV=test && cd ../..
    guard

= License

This project rocks and uses MIT-LICENSE.

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
ecm_cms2-5.0.0 README.rdoc
ecm_cms2-4.1.1 README.rdoc
ecm_cms2-4.1.0 README.rdoc
ecm_cms2-4.0.1 README.rdoc
ecm_cms2-4.0.0 README.rdoc
ecm_cms2-3.0.3 README.rdoc
ecm_cms2-3.0.2 README.rdoc
ecm_cms2-3.0.1 README.rdoc
ecm_cms2-3.0.0 README.rdoc
ecm_cms2-2.1.4 README.rdoc
ecm_cms2-2.1.3 README.rdoc
ecm_cms2-2.1.2 README.rdoc
ecm_cms2-2.1.1 README.rdoc
ecm_cms2-2.1.0 README.rdoc
ecm_cms2-2.0.4 README.rdoc
ecm_cms2-2.0.3 README.rdoc
ecm_cms2-2.0.2 README.rdoc