Reputation: 4483
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
Reputation: 13593
Try this:
gem 'annotate', :git => 'git://github.com/ctran/annotate_models.git'
Upvotes: 1
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
Reputation: 1193
There is no gem on rubygems.org called "annotate-models" you can use http://rubygems.org/gems/annotate
Upvotes: 0