LoginSignup
2
2

More than 5 years have passed since last update.

Ruby | Guard gem | guard show コマンドで plugin と option を確認する

Last updated at Posted at 2014-07-18

Ruby | Guard gem | guard show コマンドで plugin と option を確認する

概要

guard show コマンドで plugin と option を確認する

サンプル

rspec, rubocop の plugin をインストール済みの状態で show コマンドを実行してみます

$ guard show
  +---------+---------+----------------+---------------------------------+
  | Group   | Plugin  | Option         | Value                           |
  +---------+---------+----------------+---------------------------------+
  | Default | Rubocop | all_on_start   | true                            |
  |         |         | cli            | nil                             |
  |         |         | keep_failed    | true                            |
  |         |         | notification   | :failed                         |
  +---------+---------+----------------+---------------------------------+
  | Default | RSpec   | all_after_pass | false                           |
  |         |         | all_on_start   | false                           |
  |         |         | cmd            | "rspec"                         |
  |         |         | failed_mode    | :focus                          |
  |         |         | launchy        | nil                             |
  |         |         | notification   | true                            |
  |         |         | run_all        | {:message=>"Running all specs"} |
  |         |         | spec_paths     | ["spec"]                        |
  +---------+---------+----------------+---------------------------------+

参照

Guard まとめ記事

2
2
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
2
2