Avoiding LoadError:
Please install the mysql adapter: `gem install
activerecord-mysql-adapter` (can't activate mysql (~> 2.8.1), already
activated mysql-2.9.0. Make sure all dependencies are added to Gemfile.)
I had to bump ActiveRecord to get the "standalone_migrations" rake tasks
to work. The task "rake db:create:all" works but the AR upgrade is
causing errors in some of the other parts of the spec suite.
I'll need to get these errors resolved before moving forward. #127
Conflicts:
VERSION.yml
features/step_definitions/database_cleaner_steps.rb
lib/database_cleaner/configuration.rb
spec/database_cleaner/active_record/transaction_spec.rb
spec/database_cleaner/configuration_spec.rb
spec/database_cleaner/mongo_mapper/truncation_spec.rb
This is merge is not yet complete. The Mongoid strategy/specs is not completely updated
to the new structure of the project. Additionaly, I see quite a bit of
duplication between Mongoid and MongoMapper. Since they both rely on
the same underlying mongo lib I am thinking of just having a single
Mongo strategy. How the default connection is inferred can use
autodetect magic of MongoMapper and Mongoid. (Meaning, for the
Truncation strategy the #connection method would get the connection
from either MongoMapper or Mongoid depending on what is defined...
or it could use what was set by the user.)