Bundler 找不到宝石

发布于 2024-12-02 00:29:34 字数 463 浏览 1 评论 0原文

我的 Gemfile 看起来像:

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

但是当我执行 bundle install 时,我遇到了这样的问题:

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

rubygems 存储库中有任何更改吗???

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 ???

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

且行且努力 2024-12-09 00:29:34

该宝石称为注释。您可以使用以下命令添加它:

gem "annotate", '1.0.4'

或仅

gem "annotate"

用于最新版本。

查找:http://rubygems.org/gems/annotate

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

皓月长歌 2024-12-09 00:29:34

试试这个:

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

Try this:

gem 'annotate', :git => 'git://github.com/ctran/annotate_models.git'
心舞飞扬 2024-12-09 00:29:34

rubygems.org 上没有名为“annotate-models”的 gem,您可以使用 http://rubygems.org/gems/注释

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文