views:

142

answers:

3

I'm looking for a CMS writen in Ruby and not based on Ruby on Rails, are there some projects?

+1  A: 

Have a look at Nesta, it is based on the Sinatra framework.

dhofstet
A: 

the only one i can think of is Nesta, here is the link:

http://effectif.com/nesta

ez
+1  A: 

Hi. I'm the author of Nesta; nice to see it getting a mention. I thought that maybe I should explain the design goals behind it...

  1. No web based UI. I'm a programmer and am happy using a text editor for my content. In order to change the look and feel I'd rather edit the raw markup and CSS.
  2. Should be very easy to customize, without getting out of step with the main code base. There's no release to download, you simply clone the master git repository, start making your changes, and then use git to merge in any improvements that are added to the master repository.

Significant changes are announced (currently via the Nesta Twitter account), or you can monitor the github XML feed for changes that you might care about.

It's still in quite an early stage of development. By that I mean that there are lots more features that I want to add, but the features we've got so far are very stable.

I'm also very open to patches, discussions on what it could/should do, etc. (just drop me a line via my github page (github.com/gma) or get in touch on Twitter).

Graham Ashton