No description
Find a file
Jamie Winsor c3b7d0b1d2 Add request and controller authentication macros to rspec config
refactor request specs to take advantage of authentication macros
2011-08-04 03:21:21 -07:00
app refactor engine testing scenario 2011-08-03 18:01:32 -07:00
config refactor engine testing scenario 2011-08-03 18:01:32 -07:00
db refactor engine testing scenario 2011-08-03 18:01:32 -07:00
features Remove shared functionality that now exists in refinerycms-testing engine 2011-08-04 03:12:38 -07:00
lib Remove shared functionality that now exists in refinerycms-testing engine 2011-08-04 03:12:38 -07:00
script refactor engine testing scenario 2011-08-03 18:01:32 -07:00
spec Add request and controller authentication macros to rspec config 2011-08-04 03:21:21 -07:00
.gitignore refactor engine testing scenario 2011-08-03 18:01:32 -07:00
.gitmodules refactor dummy application into git submodule 2011-08-03 19:18:19 -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 Remove (commented out) duplicate refinerycms-testing gem requirement 2011-08-03 22:33:04 -07:00
Guardfile refactor engine testing scenario 2011-08-03 18:01:32 -07:00
Rakefile Require refinerycms-testing framework 2011-08-03 22:25:41 -07:00
readme.md Add rake tasks to initialize the testing environment 2011-08-03 20:38:41 -07:00
refinerycms-blog.gemspec Remove shared functionality that now exists in refinerycms-testing engine 2011-08-04 03:12:38 -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:setup

Run the test suite with Guard

$ bundle exec guard start