Agung Prasetyo
Agung Prasetyo

Reputation: 4483

Bundler can't find a gem

Here my Gemfile look like :

group :development, :test do
gem 'capybara', '0.4.0'
gem 'cucumber', '0.10.0'
gem 'cucumber-rails', '0.3.2'
gem 'rspec'
gem 'rspec-rails'
gem 'shoulda'
gem 'factory_girl'
gem 'factory_girl_rails'
gem 'autotest'
gem 'annotate-models'
end

But when i execute bundle install i've the problem like

Could not find annotate-models-1.0.4 in any of the sources

is there any change in rubygems repository ???

Upvotes: 3

Views: 4966

Answers (3)

dexter
dexter

Reputation: 13593

Try this:

gem 'annotate', :git => 'git://github.com/ctran/annotate_models.git'

Upvotes: 1

Krule
Krule

Reputation: 6476

That gem is called annotate. You can add it with:

gem "annotate", '1.0.4'

or just

gem "annotate"

for latest.

Look it up: http://rubygems.org/gems/annotate

Upvotes: 5

arunagw
arunagw

Reputation: 1193

There is no gem on rubygems.org called "annotate-models" you can use http://rubygems.org/gems/annotate

Upvotes: 0

Related Questions