Sha256: 221cf03a2995f8cec20be8ae5e7d9adb0c2e23a5d90d69192c8ba7cfc7a10edc

Contents?: true

Size: 1.36 KB

Versions: 5

Compression:

Stored size: 1.36 KB

Contents

= Kuztuscms

Simple CMS for rails developers.  
This is a simple CMS plugin for Rails which has few useful features greared towards developers more than users.  
Features include:

* Template editing
* Syntax highlighting
* Uses Twitter Bootstrap
* Easily integrated into your site as a RailsEngine

This is a new project and is focused on getting the basic functionality working, so consider a beta. Therefore if you are a developer and have any suggestions or ideas please contribute.

What's next?! :

* create KCFinder gem for ruby
* integrate TinyMCE with KCFinder
* create assets page with (KCFinder)
* allow cms users edit stylesheets and javascripts
* translations model
* simplify everything ... (add customer area to allow them change pages easily)
* etc.


== Installation

add to Gemfile

    gem 'kuztuscms'

run

    bundle install
    rake kuztuscms:install:migrations
    rake db:migrate

add to your config/routes.rb

    mount Kuztuscms::Engine => "/kuztuscms"
    get '/*page' => 'kuztuscms/pages#show'

if you want to show default page as root_url then add following line to config/routes.rb

   root :to => 'kuztuscms/pages#show'

run

    rails server

go to

    http://localhost:3000

1. create your admin user
2. create article
3. create page, choose path to the page and save
4. go to http://localhost:3000/your-path

== Requirements

* Rails >= 3.1
* Devise >= 2.0.4

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
kuztuscms-0.0.10 README.rdoc
kuztuscms-0.0.9 README.rdoc
kuztuscms-0.0.8 README.rdoc
kuztuscms-0.0.7 README.rdoc
kuztuscms-0.0.6 README.rdoc