views:

40

answers:

1

How do projects like BrowserCMS for Rails implement version control for a CMS? What is best practice for version control with database content? How does it relate to git/svn?

+1  A: 

I'm not completely certain if this is what you are asking but there are a lot of solutions that use activerecord model level versioning.

Vestal Versions, acts_as_versioned, has_versions, acts_as_revisable....

It's a crowded plugin space..here is the ruby toolbox listing.

srboisvert