LoginSignup
0
0

More than 1 year has passed since last update.

【Rails】Guardの導入

Posted at

導入方法

GemfileにGemfileの :test グループと :development グループguard-rspec を追加。

Gemfile
group :development, :test do
  gem 'guard-rspec', require: false
end

bundle installを実行する

$ bundle install

Guardfileを追加する。

$ bundle exec guard init rspec
$ bundle exec guard
0
0
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
0
0