2014-03-14 [長年日記]
_ Rails4.1 + rspec3 + guard
設定したのでメモ。
Gemfile
group :development, :test do
gem 'guard-rspec'
- $ bundle
- $ bundle exec guard init
Guardfile
- guard :rspec do
+ guard :rspec, cmd: 'bin/rspec -f doc' do
- $ bundle exec guard
これでファイルに変更があるたびにrspecを実行できて捗る。 なんかDeprecation Warnings が出てるので後で調べる。
The Guard::RSpec::Formatter formatter uses the deprecated formatter interface.