1
1

More than 5 years have passed since last update.

How to install RSpec 2.99 beta with Rails

Posted at

詳しくはこちらなんですが…。
http://qiita.com/yujinakayama/items/a1d31b2caa35642e8e69

RSpec が 3 になるにあたって、2.99 を使ってテストした方がよさそうです。

RoR の場合は Gemfile

group :development, :test do
  gem `rspec`, '~> 2.99.0.beta1'
  gem 'rspec-rails'

と書くのではなく、

group :development, :test do
  gem 'rspec-rails', '~> 2.99.0.beta1'

と書くという、それだけのハナシです。まだベータなんでアレですけど。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1