1

在我的 gemspec 文件中:

  • 我有一个名为 zconfig 的 gem 依赖项,它明确需要 net-ssh 版本 2.6.8
  • 我也在使用 net-sftp,它又需要 net-ssh 版本 >= 2.6.5

当 I 时bundle install,bundler 足够聪明,可以识别两个 gem 的需求,并正确地将 2.6.8 识别为要安装的 net-ssh 版本。

net-sftp (2.1.2)
  net-ssh (>= 2.6.5)
...
net-ssh (2.6.8)
...
zconfig (0.2.7)
  mysql (~> 2.9.1)
  mysql2 (~> 0.3.13)
  net-ssh (~> 2.6.8)
  net-ssh-gateway (~> 1.2.0)
  sequel (~> 4.1.0)
  sqlite3 (~> 1.3.7)

到目前为止,在远程服务器上进行测试时,我一直在克隆项目并安装这些 gem,bundle install --deployment然后使用本地安装的供应商 gem 运行项目bundle exec ..

但是,我现在已经完成了开发,我已经将项目打包为 gem 并将其安装在远程服务器上。问题是执行 gem 时,ruby 不符合我的 Gemfile.lock 规范并使用 net-ssh 2.7.0,这会导致冲突:

/usr/local/rvm/rubies/ruby-1.9.2-p290/lib/ruby/site_ruby/1.9.1/rubygems/specification.rb:1615:in `raise_if_conflicts': Unable to activate zconfig-0.2.7, because net-ssh-2.7.0 conflicts with net-ssh (~> 2.6.8) (Gem::LoadError)

bundle exec my_gem有没有办法使用 Gemfile.lock 规范做类似的事情?

4

1 回答 1

1

中添加以下行来将 gem 的特定版本定义为所需的版本:

gem 'net-ssh', '2.6.8'

或在thinegem.gemspec中:

spec.add_dependency 'net-ssh', '2.6.8'

而且,如果您确实将添加到项目中,那么无论如何在部署期间都会使用它。

于 2013-12-15T14:20:56.780 回答