Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Rails mountable CMS and or Blog engine [closed]

I am looking for a mountable CMS engine that I can attach to my rails 3 app. I would like to do something like:

MyApp::Application.routes.draw do
  mount Resque::Server, :at => "/resque"             # This already exists and is awesome
  mount SomeAwesomeCMS::Server, :at => '/docs'
  mount SomeAwesomeBlog::Server, :at => '/blog'
end

Anyone have any positive experiences?

Thanks

like image 231
Jonathan Avatar asked Jul 30 '11 13:07

Jonathan


2 Answers

I was looking for the same thing and found ComfortableMexicanSofa: https://github.com/twg/comfortable-mexican-sofa

It can't be mounted as an engine but it was the most simple one I found.

Ps, links and reasoning to use ComfortableMexicanSofa I found from here: http://jeffpoulton.com/2011/09/managing-static-content-in-a-ruby-on-rails-application/)

like image 182
holli Avatar answered Oct 02 '22 03:10

holli


People have done it before with NestaCMS.

If you don't technically need to go through Rack mounts, RefineryCMS is a Rails 3 app that will work inside your app.

I also think BrowserCMS was working towards being able to mount it as a Rack app, but I don't think that work is done yet.

like image 31
RyanWilcox Avatar answered Oct 02 '22 01:10

RyanWilcox