2

我有以下内容Gemfile

clear_sources
bundle_path "vendor/bundler_gems"

source "http://gemcutter.org"
...
gem "vpim",                 "~> 0.658"
# a whole bunch of other gems

当我运行时gem bundle,我安装了除 vpim 之外的所有东西。运行gem bundle --list | grep vpim什么也不返回。

我正在使用bundler08,因为该项目还不能升级到 Bundler 0.9。

4

1 回答 1

1

I solved this by installing vPim manually (gem install vpim --version "~> 0.658") and then copying the gem specification to my bundled gems directory. Bonus points for anyone who figures out why Bundler didn't copy the specification.

于 2010-07-19T18:09:37.340 回答