push
travis-ci
136 of 136 new or added lines in 17 files covered. (100.0%)
3118 of 5522 relevant lines covered (56.47%)
4.86 hits per line
1 |
module Guard |
4✔ |
2 |
module Commands |
4✔ |
3 |
class Show |
4✔ |
4 |
def self.import |
4✔ |
5 |
Pry::Commands.create_command 'show' do |
4✔ |
6 |
group 'Guard'
|
4✔ |
7 |
description 'Show all Guard plugins.'
|
4✔ |
8 |
|
|
9 |
banner <<-BANNER |
3 all except 1.9.3 ✔ |
10 |
Usage: show |
|
11 |
|
|
12 |
Show all defined Guard plugins and their options.
|
|
13 |
BANNER |
1 only 1.9.3 ✔ |
14 |
|
|
15 |
def process |
4✔ |
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 |
4✔ |