无法在 Rails 2.3.5 中加载 rspec 生成器

发布于 11-27 21:31 字数 317 浏览 3 评论 0原文

我正在开发 Rails 2.3.5,我希望使用 Rspec 进行测试。我已经安装了 rspec gem,但无法在生成器列表中列出 rspec。我指的是 https://github.com/rspec/rspec-rails

group :development, :test do
  gem "rspec", "~> 1.3"
  gem "rspec-rails", "~> 1.3"
end

谢谢。

i am working on rails 2.3.5 where i want to us Rspec for testing purpose. I have installed rspec gem but not able to list rspec in generator's list. I am referring https://github.com/rspec/rspec-rails.

group :development, :test do
  gem "rspec", "~> 1.3"
  gem "rspec-rails", "~> 1.3"
end

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

对岸观火2024-12-04 21:31:31

如果您使用的是 Rails 2.3.5,则必须安装两个插件:

ruby script/plugin install git://github.com/dchelimsky/rspec.git -r 'refs/tags/1.2.9'

然后

ruby script/plugin install git://github.com/dchelimsky/rspec-rails.git -r 'refs/tags/1.2.9'

检查 rspec 生成列表

ruby script/generate rspec

请检查 https://github.com/dchelimsky/rspec/wiki/rails 了解更多详细信息。

希望这有帮助。

If you are on rails 2.3.5 you will have to install two plugins :

ruby script/plugin install git://github.com/dchelimsky/rspec.git -r 'refs/tags/1.2.9'

and

ruby script/plugin install git://github.com/dchelimsky/rspec-rails.git -r 'refs/tags/1.2.9'

Then check the rspec generate list

ruby script/generate rspec

Please check https://github.com/dchelimsky/rspec/wiki/rails for further details.

Hope this helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文