Forums | Admin

Discussion Forums: help

Start New Thread Start New Thread
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


Thread View

Thread Author Date
New Windows 7 Ruby 1.9.2 Rails 3.1 ibm_db David Adler2011-09-03 11:55
      RE: New Windows 7 Ruby 1.9.2 Rails 3.1 ibm_db David Adler2011-09-03 12:00
            RE: New Windows 7 Ruby 1.9.2 Rails 3.1 ibm_db Praveen Devarao2011-09-03 14:41
                  RE: New Windows 7 Ruby 1.9.2 Rails 3.1 ibm_db David Adler2011-09-04 17:58
                        RE: New Windows 7 Ruby 1.9.2 Rails 3.1 ibm_db Praveen Devarao2011-09-05 04:54
                              RE: New Windows 7 Ruby 1.9.2 Rails 3.1 ibm_db David Adler2011-09-05 22:04
                                    RE: New Windows 7 Ruby 1.9.2 Rails 3.1 ibm_db David Adler2011-09-05 22:07
                                          RE: New Windows 7 Ruby 1.9.2 Rails 3.1 ibm_db Praveen Devarao2011-09-06 02:23
                                                RE: New Windows 7 Ruby 1.9.2 Rails 3.1 ibm_db David Adler2011-09-06 11:03
                                                      RE: New Windows 7 Ruby 1.9.2 Rails 3.1 ibm_db Praveen Devarao2011-09-06 18:26
                                                            RE: New Windows 7 Ruby 1.9.2 Rails 3.1 ibm_db Praveen Devarao2011-09-20 10:23

Post a followup to this message