Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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?

like image 355
Rubytastic Avatar asked Feb 14 '12 11:02

Rubytastic


People also ask

What is a Rails app?

Rails is a web application development framework written in the Ruby programming language. It is designed to make programming web applications easier by making assumptions about what every developer needs to get started. It allows you to write less code while accomplishing more than many other languages and frameworks.

How does ruby on rails work?

Meanwhile, Ruby on Rails works on the back end of websites and apps to request and fetch data from databases and to display data that contains HTML, CSS, and JavaScript content.


2 Answers

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
like image 150
Syed Aslam Avatar answered Sep 23 '22 05:09

Syed Aslam


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.

like image 33
Rubytastic Avatar answered Sep 25 '22 05:09

Rubytastic