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?

Rubytastic
  • 15,001
  • 18
  • 87
  • 175
  • 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. – Sergio Tulentsev Feb 14 '12 at 11:38

2 Answers2

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
Caffeine Coder
  • 1,869
  • 1
  • 17
  • 35
Syed Aslam
  • 8,707
  • 5
  • 40
  • 54
  • 5
    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. – JGallardo Nov 06 '13 at 20:57
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.

JGallardo
  • 11,074
  • 10
  • 82
  • 96
Rubytastic
  • 15,001
  • 18
  • 87
  • 175