在 Windows 上安装 RSpec 时遇到困难
我正在尝试开始使用 RSpec。我已经在我的 Windows 7 机器上安装了 Ruby 1.8.7。
所以我输入了 gem install rspec ,这似乎有效。但是,如果我在命令行中输入 spec
,则找不到该命令。我的路径当前包含 RUBY_HOME
中的 bin
文件夹。
如果我查看 C:\Users\Eric\.gem\specs\rubygems.org%80\quick\Marshal.4.8 目录,我确实会看到四个 RSpec 文件,例如 rspec- core-2.5.0.gemspec。然而,即使在这个目录中,spec
命令也会失败。
正确安装 RSpec 需要做什么?这看起来像是一个路径问题,但我一直无法找到 spec
命令工作的目录,所以我无法弄清楚要添加到我的路径中的内容。
I'm trying to get started with RSpec. I already had Ruby 1.8.7 installed on my Windows 7 machine.
So I typed gem install rspec
and that seemed to work. But if I type spec
in the command line, the command is not found. My path currently includes the bin
folder in my RUBY_HOME
.
If I look into the C:\Users\Eric\.gem\specs\rubygems.org%80\quick\Marshal.4.8
directory, I do see four RSpec files such as rspec-core-2.5.0.gemspec
. Nevertheless, the spec
command fails even in this directory.
What needs to be done to install RSpec correctly? It would seem like a path issue, but I have been unable to find a directory where the spec
command works, so I can't figure what to add to my path.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Windows 上,尝试这个
bundle exec rspec spec
On Windows, try this
bundle exec rspec spec
RSpec 2 中没有
spec
命令。请尝试使用rake spec
或rspec spec
。There's no
spec
command in RSpec 2. Tryrake spec
orrspec spec
.