No description
Find a file
2011-08-14 17:40:50 -07:00
app refactor engine testing scenario 2011-08-03 18:01:32 -07:00
config Replace cucumber tag features with rspec request tests 2011-08-04 15:39:04 -07:00
db refactor engine testing scenario 2011-08-03 18:01:32 -07:00
lib Ignore .lock files in Gemspec 2011-08-12 12:44:39 -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 spork as a development dependency 2011-08-11 03:08:12 -07:00
.gitignore refactor engine testing scenario 2011-08-03 18:01:32 -07:00
.rspec refactor engine testing scenario 2011-08-03 18:01:32 -07:00
changelog.md Edited changelog.md via GitHub 2011-06-30 10:35:22 -07:00
Gemfile Use arel 2.1.4 for now because 2.1.5 got yanked. 2011-08-12 08:55:00 +03:00
Guardfile Replace cucumber tag features with rspec request tests 2011-08-04 15:39:04 -07:00
Rakefile test database will be initialized before rake rspec is run 2011-08-04 17:49:18 -07:00
readme.md Update testing setup task to reflect new namespace 2011-08-04 17:38:39 -07:00
refinerycms-blog.gemspec remove empty directory from gemspec file list 2011-08-14 17:40:50 -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.0.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 1.0.0 or above.

Install

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

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

Now, run bundle install

Next, to install the blog plugin run:

rails generate refinerycms_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