Sha256: 23227b2ad19fced6ecf209b29a7719fcd40ba9fbd121e8994822077be23ccb43
Contents?: true
Size: 789 Bytes
Versions: 4
Compression:
Stored size: 789 Bytes
Contents
# Manifest Manifest is a Rails Engine content management system. It's goal is to keep the content management and creation of new data types as "Rails-like" as possible. ## Installation ### In your Gemfile: ```ruby gem 'manifest-rails' ``` ### Run the install generator: ```bash rails g manifest:install Page ``` *The "Page" argument can be literally anything, it only satisfies an internal ActiveRecord generator requirement. You could write `rails g manifest:install Cats` and it wouldn't matter.* ### Run the migrations: ```bash rake db:migrate ``` ### Create your first editor account in the console: ```bash rails console production ``` ```ruby Editor.create(email: 'user@example.com', password: 'password') ``` ### Visit http://localhost/manifest for content management.
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
manifest-rails-0.0.4 | README.md |
manifest-rails-0.0.3 | README.md |
manifest-rails-0.0.2 | README.md |
manifest-rails-0.0.1 | README.md |