Reputation: 5034
I want to make a very simple CMS. I will be the only editor, so I'd like to keep my code and content in the same place if possible.
What's the best way to go about doing this? Basically, I would like to use static code as my model.
Upvotes: 0
Views: 482
Reputation: 5034
I actually ended up using Jekyll, it was more close to what I was looking for than Nesta.
Upvotes: 0
Reputation: 7072
If you really want a Rails CMS, don't know of any that uses static files instead of a database. Rails was designed for databases. I'd say the closest you could get would be to use something like Refinery with SQLite instead of MySQL. SQLite is still a database but it stores your "database" as a file in db/production.sqlite3
without needing a database server.
However, if Rails isn't a requirement, you could try Nesta (it uses Ruby and Sinatra instead of Rails). I haven't used it myself but it sounds like almost exactly what you're looking for.
Upvotes: 2