0.0
No commit activity in last 3 years
No release in over 3 years
Manifest allows for the creation of simple content management with support for easy custom data types. It attempts to preserve the Rails way of working where possible.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

 Project Readme

Manifest

Manifest is a Rails::Engine content management system, packaged as the RubyGem manifest-rails.

It was created out of frustration with the fact that many content management systems require hacks or breaking with their own conventions in order to implement true custom data types, and the fact that many content management systems require view-editing to be done from within the application itself, persisting view templates to the database.

In Manifest, custom data types are sets of Rails models, controllers, and views that Manifest has visibility of. This means that Manifest data types can either be generated with the built-in manifest:data_type generator, or can be constructed by hand and easily tied into Manifest.

Views in Manifest are views in Rails. Editing these views and templates is a matter of editing the public-facing views in app/views and any custom Manifest views in app/views/manifest.

Getting Started

Getting started with Manifest is as easy as:

  1. Add it to your Gemfile.
  2. Require it in your config/application.rb.
  3. Run the install generator and migrate the database.

Detailed instructions can be found in the Wiki on the Getting Started page.

License

Manifest was created by Jonathan Clem and is licensed under the MIT license.