3

我安装了rspec宝石。我收到以下消息

Successfully installed rspec-2.11.0
1 gem installed
Installing ri documentation for rspec-2.11.0...
Installing RDoc documentation for rspec-2.11.0...

但是当我跑步时

  spec path/to/file.rb

我明白了

-bash: spec: command not found

对此有任何解决方案吗?

4

2 回答 2

10

我认为你应该跑

rspec path/to/file.rb
于 2012-07-31T05:54:40.107 回答
1

首先尝试使用rspec而不是仅仅spec

其次,试试这个 export PATH=$PATH:/path/to/gems/bin

显然用正确的路径替换虚拟路径,指向您的 gem 安装路径中的 bin 目录。例如,我的是~/.rvm/gems/ruby-1.9.3-p194/bin

于 2012-07-31T05:57:49.230 回答