rubygems' Could not find gem > 'win32console (>= 0, runtime)'
I'm trying to install the sample app located here: http://jhollingworth.com/2010/12/26/web-automation-using-cucumber-capybara/
One of the initial steps for setting this up are running bundle in the install location. When I execute bundle I get the following error:
C:\Capybara\jhollingworth-.Net-Web-Automation-example>bundle Your Gemfile doesn't have any sources. You can add one with a line like 'source :rub开发者_如何学编程ygems' Could not find gem 'win32console (>= 0, runtime)' in any of the gem sources listed in your Gemfile.
When I check the bundle Gemfile it does have "http://rubygems.org" included
Can anyone shed some light on the above. Google return similar results but for different packages (e.g sql)
My GemFile currently contains : source "rubygems.org"; Is that the right format?
It looks like your gemfile doesn't have any sources listed. Add 'source :rubygems' to the top of your Gemfile. If that doesn't solve your problem, post the contents of your Gemfile.
精彩评论