Sha256: 0400f57c0a6f134833370dff3fd6f583dcc0973ffd7e7fb6f9e5baa5c2aca152

Contents?: true

Size: 1.82 KB

Versions: 4

Compression:

Stored size: 1.82 KB

Contents

# Blogo

Mountable blog engine for Ruby on Rails 4.

[![Build Status](https://travis-ci.org/greyblake/blogo.png?branch=master)](https://travis-ci.org/greyblake/blogo)
[![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/greyblake/blogo/trend.png)](https://bitdeli.com/free "Bitdeli Badge")

## Who uses Blogo?

* [Brainv2 - online brain tranings](http://brainv2.com/blog)

## Quick start


Add the gem to Gemfile of you Rails application:

```
  gem 'blogo'
```

Install the gem:

```
bundle install
```

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.

## 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](http://ogp.me/)) and twitter
* Can be customized for your own needs.
* Very few external dependencies


## Markup Formats


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

| Format   | Dependency |
|----------|------------|
| html     | -          |
| markdown | redcarpet  |


## Credits

* [Sergey Potapov](https://github.com/greyblake) - creator and maintainer

## License

This project rocks and uses MIT-LICENSE.

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
blogo-0.0.8 README.markdown
blogo-0.0.7 README.markdown
blogo-0.0.6 README.markdown
blogo-0.0.5 README.markdown