Sha256: d7e4b621fd4a810b515a7ff19aee3f110efcb3b82591292c0c2e293c00652b99
Contents?: true
Size: 1.29 KB
Versions: 1
Compression:
Stored size: 1.29 KB
Contents
h1. Just Another Blog Engine h3. What is this? JABE is a bare bones blogging engine that is installed as a gem. It will grow as its needs do. This version is for Rails 3.1+ h2. Installing Edit your Gemfile and add the required gems <pre><code>gem 'devise', '>= 2.0.0' gem 'friendly_id', '>= 4.0.0' gem 'kaminari', '>= 0.13.0' </code></pre> From your rails root <pre><code>bundle install rails g devise:install </code></pre> Follow Devise install directions. Edit your Gemfile and add JABE <pre><code>gem 'jabe' </code></pre> JABE is now mountable, so you can put it wherever you want. Edit routes.rb <pre><code>mount Jabe::Engine => "/jabe" </code></pre> From your rails root <pre><code>rake jabe:install:migrations rake db:migrate rails runner "Jabe::Admin.create!( :email => 'you@example.com', :password => 'password', :password_confirmation => 'password' )" </code></pre> h2. Upgrading from 0.5.* Create a new migration to handle the database changes. <pre><code> def change rename_table :settings, :jabe_settings rename_table :admins, :jabe_admins rename_table :entries, :jabe_entries rename_table :comments, :jabe_comments rename_column :jabe_entries, :cached_slug, :slug end </code></pre> h2. TODO * Migrate generators * Switch from boilerplate to Twitter Bootstrap?
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
jabe-0.8.0 | README.textile |