Trying to install ZenTest gem, and came upon this error after adding:
group :development, :test do
gem 'rspec'
gem 'rspec-rails'
gem 'cucumber'
gem 'cucumber-rails'
gem 'webrat'
gem 'nokogiri'
gem 'zentest' #######
end
$ bundle install
Fetching source index for http://rubygems.org/
Could not find gem 'zentest (>= 0, runtime)' in any of the gem sources.
The solution was to realize that ZenTest actually capitalizes the gem name. I think this is the only gem that does this that I know of.
group :development, :test do
gem 'rspec'
gem 'rspec-rails'
gem 'cucumber'
gem 'cucumber-rails'
gem 'webrat'
gem 'nokogiri'
gem 'ZenTest' #######
end