1

我目前正在尝试运行一个 sinatra 框架,该框架从 repo 下载代码,对代码执行 rspec,然后处理来自 RSpec 的结果。但是,当我从不同的应用程序调用它时,我无法让 rspec 运行。

我不断收到以下错误:

/Users/dir/.rvm/gems/ruby-1.9.3-p194@global/gems/bundler-1.1.5/lib/bundler/rubygems_integration.rb:147:in `block in replace_gem': rspec-core is not part of the bundle. Add it to Gemfile. (Gem::LoadError)
    from /Users/dir/.rvm/gems/ruby-1.9.3-p194/bin/rspec:22:in `<main>'

在运行大量输出之后,它基本上归结为 ruby​​ 在执行 bundle exec 之前没有切换到正确的目录。我已经尝试了几乎任何方法来让它工作但没有成功......似乎即使我更改目录,它也会继续尝试在我正在使用的应用程序上运行 RSpec,而不是我想要的应用程序做。

  Dir.chdir('../target_app'){
    exe = "bundle exec rspec spec"
    `#{exe}`
  }

我也尝试过这样的反引号、exec 和 system(),但没有成功。

`cd ../target_app && bundle exec rspec spec`

我也尝试过 ChildProcess 之类的方法,但没有成功:

  p = ChildProcess.build('bundle', 'exec', 'rspec', 'spec')
  p.io.inherit!
  p.cwd = '../target_app'
  p.start

任何有关如何解决此问题的线索或帮助将不胜感激!

编辑:

我也试过bundle install --binstub --path vendor

使用此代码:

  Dir.chdir('../target_app'){
    puts `pwd`.chomp
    exe = "bin/rspec spec -o ../tmp.txt"
    puts exe
    `#{exe}`
  }

我得到这个输出:

/Users/me/dev/target_app
bin/rspec spec -o ../tmp.txt
/Users/me/.rvm/gems/ruby-1.9.3-p194@global/gems/bundler-1.1.5/lib/bundler/rubygems_integration.rb:223:in `block in replace_bin_path': can't find executable rspec (Gem::Exception)
    from bin/rspec:16:in `<main>'
4

1 回答 1

2

为 Bundler 生成 binstubbundle install --binstubs并使用 binstub 代替 rspec,以便始终使用正确的 rspec 和 Gemfile。

http://gembundler.com/v1.2/man/bundle-exec.1.html(该在线手册页中有关 binstubs 的更多信息)

于 2013-01-23T09:01:34.617 回答