| Message: 96949 |
 |
BY: Praveen Devarao (praveend) DATE: 2011-09-03 14:41 SUBJECT: RE: New Windows 7 Ruby 1.9.2 Rails 3.1 ibm_db Hi David,
This error happens because the ibm_db gem is not specified in the Gemfile under
your app directory. Add the below line to your Gemfile and run bundle update
gem 'ibm_db'
This is a feature of the bundler gem (dependency of rails) that takes care of
your application dependencies via the gem file. For more details on bundler
visit http://gembundler.com/
You could also generate your app with the command below
rails new myapp -d ibm_db
with this specification of ibm_db, rails will automatically take care of all
configurations (including adding into the Gemfile).
One more thing to mention is, you will need to use the adapter attached
@ http://rubyforge.org/tracker/index.php?func=detail&aid=29275&group_id=2361&ati
d=9175 for functioning with Rails31. This will make into the next release, planned
to happen soon.
Let us know how it goes.
Thanks
Praveen | |