Project

blogelator

0.01
No commit activity in last 3 years
No release in over 3 years
Blogelator is an easy way to add a blog to your Rails app.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0

Runtime

 Project Readme

Blogelator

Code Climate

Blogelator is a Ruby gem for adding a blog to a Rails project.

Installation

Add this line to your application's Gemfile:

gem "blogelator"

Install the Blogelator gem with Bundler:

bundle install

Install the controller, views, and database migrations:

rails g blogelator:install
rake db:migrate

Active Admin

Blogelator registers the blog posts with Active Admin to provide the editing interface for your blog posts. Everything works best if you are using Active Admin and if current_admin_user is used to return an authenticated user who can manage the blog posts when signed in.

If you're not using Active Admin, it should be pretty easy to create a simple interface for managing your blog posts. The reason the old admin interface was removed was to simplify the project and remove authorization methods that don't belong in this gem.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request