Blogit - A Rails blogging solution
Blogit lets you add a blog to your Ruby on Rails application in just a few seconds.
Instant gratification
Add this to your Gemfile
gem "blogit"
...and run bundle install
to install the gem.
Next, run:
# add an initializer to config/initializers with all of the configuration options
$ rails g blogit:install
# This will add the necessary migrations to your app's db/migrate directory
rake blogit:install:migrations
# This will run any pending migrations
rake db:migrate
then add the following to your routes.rb file:
# config/routes.rb
mount Blogit::Engine => "/blog"
Finally, declare which of your models acts as blogger in your app (probably User or Admin).
class User
blogs
end
Configuration
Running rails g blogit:install
will add an initializer file named blogit.rb. In here
you can set various configuration options. Please read the documentation for a full list of the options available.
Batteries included
Blogit provides you with the following features
- An XML Sitemap located at
/blog/posts.xml
- An RSS feed located at
/blog/posts.rss
- Internationalization (see the locales file for configurable options)
- Share links (Google+, Twitter & Facebook)
- Disquss Comments
- Code Syntax Highlighting CSS file (add
*= require pygments
to your app's stylesheet)
Issues
If you discover a problem with Blogit, please let us know about it.
Remember to search the issues list first in case your issue has already been raised by another Githuber
Documentation
Full documentation is available here: http://blogit.katanacode.com
Contributing
You're welcome to contribute to Blogit. Please consult the contribution guidelines for more info.
Legal Stuff
Copyright © 2011 - 2015 Katana Code Ltd.
See LEGAL for full details.
Credits
Developed by Katana Code
with generous contributions from:
About Katana Code
Katana Code are web developers based in Edinburgh, Scotland.