push
travis-ci
1 of 1 new or added line in 1 file covered. (100.0%)
3724 of 5835 relevant lines covered (63.82%)
13.34 hits per line
1 |
module Guard |
5✔ |
2 |
module Commands |
5✔ |
3 |
class Show |
5✔ |
4 |
def self.import |
5✔ |
5 |
Pry::Commands.create_command "show" do |
5✔ |
6 |
group "Guard"
|
5✔ |
7 |
description "Show all Guard plugins."
|
5✔ |
8 |
|
|
9 |
banner <<-BANNER |
4 all except 1.9.3 ✔ |
10 |
Usage: show |
|
11 |
|
|
12 |
Show all defined Guard plugins and their options.
|
|
13 |
BANNER |
2 only 1.9.3 and rbx ✔ |
14 |
|
|
15 |
def process |
5✔ |
16 |
::Guard.async_queue_add([:guard_show]) |
× |
17 |
end
|
|
18 |
end
|
|
19 |
end
|
|
20 |
end
|
|
21 |
end
|
|
22 |
end
|
|
23 |
|
|
24 |
Guard::Commands::Show.import |
5✔ |