donald
donald

Reputation: 23737

How To Add A Ruby Blog to a Rails 3 App

Is it possible to add a blog system like toto ou jekyll to an existing Rails 3 app?

Thanks

Upvotes: 2

Views: 945

Answers (3)

Dreamr OKelly
Dreamr OKelly

Reputation: 3622

Yup, Toto and RubySlippers I know can be integrated into a Rails 3 app.

If you want a nice, hackable pure ruby & rack blog:

It uses git to manage versioning of your posts and publishing as well. It is built to get a free blog going on heroku in record time!

gem install ruby-slippers-engine

  • Template system (by separating business and presentation)
  • Ruby 1.8 and 1.9
  • Fully tested with Riot, protest the slow test!
  • Includes comments via discus, tagging, markdown, archives and more

~ note: I am the author of RubySlippers and a contributor to Toto

Upvotes: 0

michaeltomer
michaeltomer

Reputation: 455

So long as the blog is a Rack app, you can mount it in the router. See Yehuda Katz' excellent post for details.

Upvotes: 2

thekindofme
thekindofme

Reputation: 3866

Take a look at this stakoverflow question and jekyll-admin project

Upvotes: 0

Related Questions