Upgrading from Merb 1.0 to 1.0.3
Posted: December 2nd, 2008 | Author: Daniel Higginbotham | Filed under: Merb, Programming | 1 Comment »I ran into a couple snags when upgrading, but doing the following solved my problems:
- updating the do_mysql gem
- updating the do_sqlite3 gem
- installing dm-core from source (solves the problem described here)
- git clone git://github.com/sam/dm-core.git
- cd dm-core
- rake package
- sudo gem install pkg/dm-core-0.9.7

I’d suggest also uninstalling the older gems to make sure there are no conflicts. This is the command I use to do that: http://gist.github.com/31187