0

我想在构建应用程序的同时使用支持库,同时使用 RVM 和 Bundler 来管理我的应用程序环境。

在我的 Gemfile 中是

# forked and cloned to local directory
gem 'feedzirra', :path => '../../feedzirra'

然后在命令行上:

$ bundle install
..
Using feedzirra (0.2.0.rc2) from source at /Users/ryan/dev/feedzirra 
..
$ bundle show feedzirra
/Users/ryan/dev/feedzirra
$ gem which feedzirra
ERROR:  Can't find ruby library file or shared library feedzirra

irb:

1.9.3p194 :001 > require 'feedzirra'
LoadError: cannot load such file -- feedzirra
    from /Users/ryan/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/site_ruby/1.9.1/rubygems/custom_require.rb:36:in `require'
    from /Users/ryan/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/site_ruby/1.9.1/rubygems/custom_require.rb:36:in `require'
    from (irb):1
    from /Users/ryan/.rvm/rubies/ruby-1.9.3-p194/bin/irb:16:in `<main>'

我错过了什么?

4

1 回答 1

2

您需要在捆绑器的上下文中运行它:

bundle exec gem which feedzirra

或者

bundle exec irb
于 2012-07-27T21:27:46.260 回答