i need some help at ruby on rails specially with ruby gems.
If i use the "rails generate scaffold something", I get always the failure:
"Specified 'mysql2' for database adapter, but the gem is not loaded. Add 'gem' mysql2 to your Gemfile(Gem::LoadError)"
If i use the command "gem -list" mysql2(0.3.15) will show up in this list.
After some search i read(Install mysql adapter gem install) that i should edit the Gemfile and add gem 'mysql2', "~>0.3.15" instead of gem 'mysql2' in Gemfile.
So my problem is now where is this Gemfile located. I use ruby on Windows 7, and i installed Ruby with the "railsinstaller-2.2.2"
Regards, dot