PiccoBlog is a simple and light weight markdown blog engine for Ruby on Rails (v4.2.4+) applications.
- Title, body, exceprt
- Featured image
- Tagging
- Pagination
- Member's only flag
- Hidden/Visible state
- Enable autosave feature
- Integrate complete test suite
- Comments are not fully impemented (ActiveRecord or other)
Add this line to your application's Gemfile:
gem 'picco_blog'
And then execute:
$ bundle install
Generate the install files (migrations and initializer)
$ rails generate picco_blog:install
Run migrations
$ rake db:migrate
If you want to override the default ERB views (most likely you do)
$ rails generate picco_blog:views
Add to config/routes.rb
mount PiccoBlog::Engine => "/blog"
Include the PiccoBlog Javascript and CSS Assets. Note: JQuery is required to be loaded first!
Add to assets/javascripts/application.js
//= require picco_blog/application
Add to assets/stylesheets/application.css
*= require picco_blog/application
Done!
The default initializer was copied to config/initializers/picco_blog.rb
. Each configurable option is commented in the file.
By default, Dragonfly and Friendly ID gems are utilized. To override these configurations, create config/initializers/dragonfly.rb
and config/initializers/friendly_id.rb
initializers.
Please use the issue tracker if you have any issues.
Changes are listed in CHANGELOG.md
Brandon Bango - Author
This project rocks and uses MIT-LICENSE.