Canyon
Canyon is a Rails blogging engine, including only the backend. How you present the blog posts is up to you.
Installation
Include the engine to your projects Gemfile. Gemfile
gem 'canyon'
Include the routes from the engine to your applications routing file. config/routes.rb
Rails.application.routes.draw do
# All your application routes.
mount Canyon::Engine => '/cy-admin'
end
Load the engine sample data. db/seeds.rb (optional)
Canyon::Engine.load_seed
Running rake db:seed will now include a default user and blog post.