You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

blogo

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

blogo

0.1.4
bundlerRubygems
Version published
Maintainers
1
Created
Source

Mountable blog engine for Ruby on Rails 4.

Build Status Code Climate Coverage Status

Quick start

Add the gem to Gemfile of you Rails application:

gem 'blogo'

Install the gem:

bundle install

Install initializer file:

rails generate blogo:install

Take a look into config/initializers/blogo.rb and configure what you need.

Install blogo migrations and run them:

rake blogo:install:migrations
rake db:migrate

Create a user:

rake blogo:create_user[user_name,user@email.com,password]

Mount the blog routes to you rails application in config/routes.rb

Blogo::Routes.mount_to(self, at: '/blog')

Run the rails application and go to http://localhost:3000/blog/admin to create you first post!

Go to http://localhost::3000/blog to take a look at your posts.

Troubleshooting

If you use zsh and experience a problem to create a user through the rake task, try to escape [ and ] characters:

rake blogo:create_user\[user_name,user@email.com,password\]

More information?

Please see wiki.

Features

  • Mountable rails engine
  • Image upload
  • "Read more" feature
  • Tags
  • Comments with Disqus
  • Atom feed
  • Pagination
  • Designed to support multiple formats(html, markdown, whatever)
  • WYSIWYG editor(for html format)
  • Google Analytics
  • Social icons (Github, Twitter, can be more if you need it)
  • SEO optimized: generates meta description, keywords, meta tags for facebook(OpenGraph) and twitter
  • Can be customized for your own needs.
  • Very few external dependencies
  • Localization support (en, es, pt-BR, zh-CN, fr)

Markup Formats

The next formats are supported out of the box, but don't forget to add necessary dependencies to your Gemfile manually.

FormatDependency
html-
markdownredcarpet

Credits

License

This project rocks and uses MIT-LICENSE.

FAQs

Package last updated on 06 Mar 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts