My Rails application is running so far and I decided to add the 'devise' gem in order to make user management easier. This is on Windows 7 x86. All programs involved are at the currently latest stable version available (Ruby 1.9.2p290...)
'gem install devise' does work properly.
Then I added the line gem 'devise' into the Gemfile and ran 'bundle install'
Bundler ran its course, did not install the devise gem however. But it DID install the sqlite3 gem which I also specified in the same Gemfile. The devise gem and its dependencies are also listed in the Gemfile.lock - but neither 'bundle install' nor 'bundle update' will make a difference. Deleting the gems, caches, ~/.bundle/config yielded no discernible difference.
I also don't get an error message. Does anyone have an idea what I might be doing wrong here?