No description
Find a file
2011-10-27 19:37:38 -07:00
app Fix draft preview of blog posts 2011-09-21 00:56:54 -07:00
config Remove Refinery::Application route draw call, it no longer exists 2011-10-26 13:29:01 -07:00
db Seed data should not be loaded mid migration 2011-10-27 18:38:48 -07:00
lib Tabs are autoloaded, don't need to explicitly require 2011-10-27 19:37:38 -07:00
script Dummy app is no longer a submodule, now part of the projected - generated by testing generator 2011-08-10 17:03:37 -07:00
spec Remove dummy application for testing 2011-10-26 13:11:54 -07:00
.gitignore Add spec/dummy to git ignore file 2011-10-26 13:29:41 -07:00
.rspec Use fuubar formatting for rspec 2011-08-15 00:15:36 -07:00
.travis.yml Added sqlite3, pg, mysql2 to the Gemfile and added Jamie to the notifications list for TRavis. 2011-09-02 13:06:38 +12:00
changelog.md Edited changelog.md via GitHub 2011-06-30 10:35:22 -07:00
Gemfile accidentally had refinerycms pointing to my local filesystem... 2011-09-04 14:57:38 -07:00
Guardfile index action of blog post controller now caches and sweeps on changes 2011-09-03 21:55:30 -07:00
Rakefile Update blog generator to use Rails 3.1 base 2011-10-27 18:12:32 -07:00
readme.md Update readme. 2011-08-14 00:51:41 +03:00
refinerycms-blog.gemspec Regenerate gemspec 2011-10-11 18:21:49 -07:00
todo.md wanna keep track of ideas, i guess 2011-06-30 15:30:14 -05:00

Refinery CMS Blog

Simple blog engine for Refinery CMS. It supports posts, categories and comments.

This version of refinerycms-blog supports Rails 3.1.x. To use Rails 2.3.x use the refinerycms-blog "Rails 2.3.x stable branch".

Options:

  • Comment moderation
  • ShareThis.com support on posts. Set your key in Refinery's settings area to enable this.

Requirements

Refinery CMS version 2.0.0 or above.

Install

Open up your Gemfile and add at the bottom this line:

gem 'refinerycms-blog', '~> 2.0.0'

Now, run bundle install

Next, to install the blog plugin run:

rails generate refinery:blog

Finally migrate your database and you're done.

rake db:migrate

Developing & Contributing

The version of Refinery to develop this engine against is defined in the gemspec. To override the version of refinery to develop against, edit the project Gemfile to point to a local path containing a clone of refinerycms.

Testing

Setup the test environment

$ bundle exec rake refinery:testing:engine:setup

Run the test suite with Guard

$ bundle exec guard start