A clean minimal gem to add a simple blog to existing app? [closed]
Asked Answered
H

2

19

I need an blog inside my existing app but it doesn't have to be fancy, some category's and an way to convert a directory of textiles to the blogposts including date would fit, already searched for this but nothing fancy came up.

any recommendations on a good gem to add blog to existing rails app?

Hamo answered 14/2, 2012 at 11:36 Comment(1)
Rails seems to be built exactly for making blogs. At least, that's what I see in all tutorials. :) So, it should take you no more than couple of hours to roll your own simple implementation.Leatherette
H
3

I finally ended up with a very simple blog controller that loads some page content from the database, using redcloth to preserve formatting, also use this same method for serving static pages in my app.

Hamo answered 30/4, 2012 at 10:56 Comment(0)
E
19

You can roll out your own simple blogging engine for your needs and Rails makes it easy. However, there are a couple of options which work fantastically:

  1. Jekyll ( Checkout Jekyll Bootstrap as well)
  2. Typo

There are other full blown CMS solutions available:

  1. Radiant CMS
  2. Refinery CMS
  3. Locomotive
Epiphysis answered 14/2, 2012 at 11:47 Comment(1)
I don't really like any of these. Jekyll, too time consuming and not user friendly (for non-technical users) as it requires markdown and must be pushed to the server. Locomotive is a pain to deal with and has terrible documentation and support. Refinery uses a lot of outdated items and is too opionated. But I will look into Typo.Requite
H
3

I finally ended up with a very simple blog controller that loads some page content from the database, using redcloth to preserve formatting, also use this same method for serving static pages in my app.

Hamo answered 30/4, 2012 at 10:56 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.