No description
Find a file
Uģis Ozols d1bfab99ce Changes on Travis:
* Remove Ruby 1.9.2 testing
  * Allow Rubinius to fail
2012-04-26 10:51:50 +03:00
app Notification recipients should be specified using :to instead of :recipients. Fixes #226. 2012-04-19 17:42:03 +03:00
config Fix draft translation 2012-03-22 08:41:38 -05:00
db Fixed drop_table for Category. 2012-03-24 15:22:58 -03:00
lib Don't cache when logged in or there's a flash message. Moved canonical to protected methods. 2012-03-20 15:16:58 +13: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 Adjust times for spec to avoid running into DST issues. 2012-04-26 10:50:42 +03:00
tasks Don't need testing task if we require refinery-settings. 2012-03-01 14:00:09 +02:00
.gitignore Ignore .rbx 2012-02-02 10:53:53 +13:00
.rspec Updated to support Refinery CMS 2.0.1 and Rails 3.2.2 2012-03-06 13:17:41 +13:00
.travis.yml Changes on Travis: 2012-04-26 10:51:50 +03:00
changelog.md Edited changelog.md via GitHub 2011-06-30 10:35:22 -07:00
Gemfile There's already dev, test group in Gemfile so use that. 2012-03-01 08:43:34 +02:00
Guardfile index action of blog post controller now caches and sweeps on changes 2011-09-03 21:55:30 -07:00
Rakefile Don't need testing task if we require refinery-settings. 2012-03-01 14:00:09 +02:00
readme.md Adding More information to README 2012-04-22 20:27:46 -05:00
refinerycms-blog.gemspec Remove testing dependencies. 2012-04-26 10:48:55 +03: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.2.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. To enable, set your key in Refinery's settings area.

Requirements

Refinery CMS version 2.0.1 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

Run database migrations:

rake db:migrate

Finally seed your database and you're done.

rake db:seed

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

Generate the dummy application to test against

$ bundle exec rake refinery:testing:dummy_app

Run the test suite with Guard

$ bundle exec guard start

Or just with rake spec

$ bundle exec rake spec

More Information