guard 2.8.2 → 2.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +0 -7
- data/lib/guard.rb +220 -152
- data/lib/guard.rb.orig +213 -155
- data/lib/guard/aruba_adapter.rb +2 -2
- data/lib/guard/cli.rb +8 -13
- data/lib/guard/cli.rb.orig +12 -10
- data/lib/guard/commander.rb +15 -7
- data/lib/guard/commands/all.rb +3 -0
- data/lib/guard/commands/change.rb +3 -0
- data/lib/guard/commands/pause.rb +2 -0
- data/lib/guard/commands/reload.rb +4 -0
- data/lib/guard/commands/scope.rb +3 -0
- data/lib/guard/config.rb +24 -0
- data/lib/guard/deprecated/dsl.rb +45 -0
- data/lib/guard/deprecated/guard.rb +166 -0
- data/lib/guard/deprecated/guardfile.rb +84 -0
- data/lib/guard/dsl.rb +24 -13
- data/lib/guard/dsl.rb.orig +378 -0
- data/lib/guard/dsl_describer.rb +8 -2
- data/lib/guard/dsl_describer.rb.orig +11 -3
- data/lib/guard/guardfile.rb +32 -44
- data/lib/guard/guardfile/evaluator.rb +13 -6
- data/lib/guard/guardfile/generator.rb +4 -3
- data/lib/guard/interactor.rb +7 -3
- data/lib/guard/internals/debugging.rb +1 -0
- data/lib/guard/internals/environment.rb +93 -0
- data/lib/guard/internals/helpers.rb +13 -0
- data/lib/guard/internals/traps.rb +10 -0
- data/lib/guard/jobs/pry_wrapper.rb +4 -3
- data/lib/guard/jobs/sleep.rb +2 -0
- data/lib/guard/metadata.rb +190 -0
- data/lib/guard/notifier.rb +124 -99
- data/lib/guard/notifier.rb.orig +124 -99
- data/lib/guard/notifier/detected.rb +83 -0
- data/lib/guard/notifiers/emacs.rb +2 -1
- data/lib/guard/notifiers/tmux.rb +173 -177
- data/lib/guard/plugin/base.rb +2 -0
- data/lib/guard/plugin_util.rb +26 -32
- data/lib/guard/reevaluator.rb +3 -3
- data/lib/guard/reevaluator.rb.orig +22 -0
- data/lib/guard/runner.rb +1 -0
- data/lib/guard/session.rb +5 -0
- data/lib/guard/sheller.rb +2 -2
- data/lib/guard/templates/Guardfile +4 -0
- data/lib/guard/templates/Guardfile.orig +2 -0
- data/lib/guard/terminal.rb +1 -0
- data/lib/guard/ui.rb +4 -1
- data/lib/guard/version.rb +1 -1
- data/lib/guard/version.rb.orig +1 -1
- data/lib/guard/watcher.rb +3 -1
- data/lib/guard/watcher.rb.orig +122 -0
- data/man/guard.1 +1 -4
- data/man/guard.1.html +1 -4
- metadata +17 -25
- data/lib/guard/commander.rb.orig +0 -103
- data/lib/guard/commands/all.rb.orig +0 -36
- data/lib/guard/commands/reload.rb.orig +0 -34
- data/lib/guard/commands/scope.rb.orig +0 -36
- data/lib/guard/deprecated_methods.rb +0 -72
- data/lib/guard/deprecated_methods.rb.orig +0 -71
- data/lib/guard/deprecator.rb +0 -133
- data/lib/guard/deprecator.rb.orig +0 -206
- data/lib/guard/guard.rb +0 -100
- data/lib/guard/guard.rb.orig +0 -42
- data/lib/guard/guardfile.rb.orig +0 -43
- data/lib/guard/guardfile/evaluator.rb.orig +0 -275
- data/lib/guard/internals/debugging.rb.orig +0 -0
- data/lib/guard/internals/environment.rb.orig +0 -0
- data/lib/guard/internals/tracing.rb.orig +0 -0
- data/lib/guard/notifiers/base.rb.orig +0 -221
- data/lib/guard/notifiers/tmux.rb.orig +0 -339
- data/lib/guard/plugin_util.rb.orig +0 -186
- data/lib/guard/runner.rb.orig +0 -210
- data/lib/guard/setuper.rb +0 -359
- data/lib/guard/setuper.rb.orig +0 -395
- data/lib/guard/ui.rb.orig +0 -278
data/lib/guard/plugin/base.rb
CHANGED
data/lib/guard/plugin_util.rb
CHANGED
@@ -22,27 +22,11 @@ module Guard
|
|
22
22
|
# @return [Array<String>] a list of Guard plugin gem names
|
23
23
|
#
|
24
24
|
def self.plugin_names
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
true
|
29
|
-
elsif x.name != "guard"
|
30
|
-
|
31
|
-
guard_plugin_path = File.join(
|
32
|
-
x.full_gem_path,
|
33
|
-
"lib/guard/#{ x.name }.rb"
|
34
|
-
)
|
35
|
-
|
36
|
-
File.exist?(guard_plugin_path)
|
37
|
-
end
|
38
|
-
end
|
39
|
-
else
|
40
|
-
::Guard::UI.deprecation \
|
41
|
-
"Rubygems version prior to 1.8.0 are no longer supported"\
|
42
|
-
" and may not work"
|
25
|
+
valid = Gem::Specification.find_all.select do |gem|
|
26
|
+
_gem_valid?(gem)
|
27
|
+
end
|
43
28
|
|
44
|
-
|
45
|
-
end.map { |x| x.name.sub(/^guard-/, "") }.uniq
|
29
|
+
valid.map { |x| x.name.sub(/^guard-/, "") }.uniq
|
46
30
|
end
|
47
31
|
|
48
32
|
# Initializes a new `Guard::PluginUtil` object.
|
@@ -87,14 +71,8 @@ module Guard
|
|
87
71
|
# @return [String] the full path to the plugin gem
|
88
72
|
#
|
89
73
|
def plugin_location
|
90
|
-
@plugin_location ||=
|
91
|
-
|
92
|
-
Gem::Specification.find_by_name("guard-#{ name }").full_gem_path
|
93
|
-
else
|
94
|
-
Gem.source_index.find_name("guard-#{ name }").last.full_gem_path
|
95
|
-
end
|
96
|
-
end
|
97
|
-
rescue
|
74
|
+
@plugin_location ||= _full_gem_path("guard-#{name}")
|
75
|
+
rescue Gem::LoadError
|
98
76
|
::Guard::UI.error "Could not find 'guard-#{ name }' gem path."
|
99
77
|
end
|
100
78
|
|
@@ -120,7 +98,9 @@ module Guard
|
|
120
98
|
|
121
99
|
try_require = false
|
122
100
|
begin
|
123
|
-
|
101
|
+
if try_require
|
102
|
+
require "guard/#{name.downcase}"
|
103
|
+
end
|
124
104
|
|
125
105
|
@plugin_class ||= ::Guard.const_get(_plugin_constant)
|
126
106
|
rescue TypeError => error
|
@@ -134,6 +114,7 @@ module Guard
|
|
134
114
|
rescue LoadError => error
|
135
115
|
unless options[:fail_gracefully]
|
136
116
|
UI.error ERROR_NO_GUARD_OR_CLASS % [name.downcase, _constant_name]
|
117
|
+
UI.error "Error is: #{error}"
|
137
118
|
UI.error error.backtrace.join("\n")
|
138
119
|
end
|
139
120
|
end
|
@@ -142,9 +123,11 @@ module Guard
|
|
142
123
|
# Adds a plugin's template to the Guardfile.
|
143
124
|
#
|
144
125
|
def add_to_guardfile
|
145
|
-
|
146
|
-
|
147
|
-
|
126
|
+
require "guard/guardfile/evaluator"
|
127
|
+
# TODO: move this method to Generator?
|
128
|
+
evaluator = Guard::Guardfile::Evaluator.new
|
129
|
+
evaluator.evaluate_guardfile
|
130
|
+
if evaluator.guardfile_include?(name)
|
148
131
|
::Guard::UI.info "Guardfile already includes #{ name } guard"
|
149
132
|
else
|
150
133
|
content = File.read("Guardfile")
|
@@ -182,5 +165,16 @@ module Guard
|
|
182
165
|
@_constant_name ||= name.gsub(/\/(.?)/) { "::#{ $1.upcase }" }.
|
183
166
|
gsub(/(?:^|[_-])(.)/) { $1.upcase }
|
184
167
|
end
|
168
|
+
|
169
|
+
def self._gem_valid?(gem)
|
170
|
+
return true if gem.name =~ /^guard-/
|
171
|
+
full_path = gem.full_gem_path
|
172
|
+
file = File.join(full_path, "lib", "guard", "#{gem.name}.rb")
|
173
|
+
File.exist?(file)
|
174
|
+
end
|
175
|
+
|
176
|
+
def _full_gem_path(name)
|
177
|
+
Gem::Specification.find_by_name(name).full_gem_path
|
178
|
+
end
|
185
179
|
end
|
186
180
|
end
|
data/lib/guard/reevaluator.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
|
-
require "guard"
|
2
1
|
require "guard/plugin"
|
2
|
+
require "guard/guardfile/evaluator"
|
3
3
|
|
4
4
|
module Guard
|
5
|
-
class Reevaluator <
|
5
|
+
class Reevaluator < Plugin
|
6
6
|
def run_on_modifications(files)
|
7
7
|
return unless ::Guard::Watcher.match_guardfile?(files)
|
8
8
|
::Guard.save_scope
|
9
|
-
::Guard.
|
9
|
+
Guard::Guardfile::Evaluator.new(Guard.options).reevaluate_guardfile
|
10
10
|
rescue ScriptError, StandardError => e
|
11
11
|
::Guard::UI.warning("Failed to reevaluate file: #{e}")
|
12
12
|
|
@@ -0,0 +1,22 @@
|
|
1
|
+
require "guard/plugin"
|
2
|
+
require "guard/guardfile/evaluator"
|
3
|
+
|
4
|
+
module Guard
|
5
|
+
class Reevaluator < Plugin
|
6
|
+
def run_on_modifications(files)
|
7
|
+
STDERR.puts files.inspect
|
8
|
+
return unless ::Guard::Watcher.match_guardfile?(files)
|
9
|
+
::Guard.save_scope
|
10
|
+
Guard::Guardfile::Evaluator.new.reevaluate_guardfile
|
11
|
+
rescue ScriptError, StandardError => e
|
12
|
+
::Guard::UI.warning("Failed to reevaluate file: #{e}")
|
13
|
+
|
14
|
+
options = { watchers: [::Guard::Watcher.new("Guardfile")] }
|
15
|
+
::Guard.add_plugin(:reevaluator, options)
|
16
|
+
|
17
|
+
throw :task_has_failed
|
18
|
+
ensure
|
19
|
+
::Guard.restore_scope
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
data/lib/guard/runner.rb
CHANGED
data/lib/guard/sheller.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
require "open3"
|
2
|
+
|
1
3
|
module Guard
|
2
4
|
# The Guard sheller abstract the actual subshell
|
3
5
|
# calls and allow easier stubbing.
|
@@ -108,8 +110,6 @@ module Guard
|
|
108
110
|
def self._system_with_capture(*args)
|
109
111
|
# We use popen3, because it started working on recent versions
|
110
112
|
# of JRuby, while JRuby doesn't handle options to Kernel.system
|
111
|
-
require "open3"
|
112
|
-
|
113
113
|
args = _shellize_if_needed(args)
|
114
114
|
|
115
115
|
stdout, stderr, status = nil
|
data/lib/guard/terminal.rb
CHANGED
data/lib/guard/ui.rb
CHANGED
@@ -1,6 +1,9 @@
|
|
1
1
|
require "lumberjack"
|
2
2
|
|
3
3
|
require "guard/options"
|
4
|
+
require "guard/session"
|
5
|
+
require "guard/metadata"
|
6
|
+
|
4
7
|
require "guard/ui/colors"
|
5
8
|
|
6
9
|
require "guard/terminal"
|
@@ -104,7 +107,7 @@ module Guard
|
|
104
107
|
msg = "neither ::Guard.setup nor ::Guard.reset_options was called"
|
105
108
|
fail msg if ::Guard.options.nil?
|
106
109
|
unless ENV["GUARD_GEM_SILENCE_DEPRECATIONS"] == "1"
|
107
|
-
backtrace = Thread.current.backtrace[1..
|
110
|
+
backtrace = Thread.current.backtrace[1..5].join("\n\t >")
|
108
111
|
msg = format("%s\nDeprecation backtrace: %s", message, backtrace)
|
109
112
|
warning(msg, options)
|
110
113
|
end
|
data/lib/guard/version.rb
CHANGED
data/lib/guard/version.rb.orig
CHANGED
data/lib/guard/watcher.rb
CHANGED
@@ -83,7 +83,9 @@ module Guard
|
|
83
83
|
# @return [Boolean] whether one of these files is the Guardfile
|
84
84
|
#
|
85
85
|
def self.match_guardfile?(files)
|
86
|
-
|
86
|
+
# TODO: move this method elsewhere
|
87
|
+
require "guard/guardfile/evaluator"
|
88
|
+
path = Guard.options[:guardfile]
|
87
89
|
files.any? { |file| File.expand_path(file) == path }
|
88
90
|
end
|
89
91
|
|
@@ -0,0 +1,122 @@
|
|
1
|
+
require "guard/ui"
|
2
|
+
|
3
|
+
module Guard
|
4
|
+
# The watcher defines a RegExp that will be matched against file system
|
5
|
+
# modifications.
|
6
|
+
# When a watcher matches a change, an optional action block is executed to
|
7
|
+
# enable processing the file system change result.
|
8
|
+
#
|
9
|
+
class Watcher
|
10
|
+
attr_accessor :pattern, :action
|
11
|
+
|
12
|
+
# Initializes a file watcher.
|
13
|
+
#
|
14
|
+
# @param [String, Regexp] pattern the pattern to be watched by the Guard
|
15
|
+
# plugin
|
16
|
+
# @param [Block] action the action to execute before passing the result to
|
17
|
+
# the Guard plugin
|
18
|
+
#
|
19
|
+
def initialize(pattern, action = nil)
|
20
|
+
@pattern, @action = pattern, action
|
21
|
+
@@warning_printed ||= false
|
22
|
+
|
23
|
+
# deprecation warning
|
24
|
+
regexp = /(^(\^))|(>?(\\\.)|(\.\*))|(\(.*\))|(\[.*\])|(\$$)/
|
25
|
+
return unless @pattern.is_a?(String) && @pattern =~ regexp
|
26
|
+
|
27
|
+
unless @@warning_printed
|
28
|
+
::Guard::UI.info "*" * 20 + "\nDEPRECATION WARNING!\n" + "*" * 20
|
29
|
+
::Guard::UI.info <<-MSG
|
30
|
+
You have a string in your Guardfile watch patterns that seem to
|
31
|
+
represent a Regexp.
|
32
|
+
|
33
|
+
Guard matches String with == and Regexp with Regexp#match.
|
34
|
+
|
35
|
+
You should either use plain String (without Regexp special
|
36
|
+
characters) or real Regexp.
|
37
|
+
MSG
|
38
|
+
@@warning_printed = true
|
39
|
+
end
|
40
|
+
|
41
|
+
new_regexp = Regexp.new(@pattern).inspect
|
42
|
+
::Guard::UI.info "\"#{@pattern}\" has been converted to #{ new_regexp }\n"
|
43
|
+
@pattern = Regexp.new(@pattern)
|
44
|
+
end
|
45
|
+
|
46
|
+
# Finds the files that matches a Guard plugin.
|
47
|
+
#
|
48
|
+
# @param [Guard::Plugin] guard the Guard plugin which watchers are used
|
49
|
+
# @param [Array<String>] files the changed files
|
50
|
+
# @return [Array<Object>] the matched watcher response
|
51
|
+
#
|
52
|
+
def self.match_files(guard, files)
|
53
|
+
return [] if files.empty?
|
54
|
+
|
55
|
+
files.inject([]) do |paths, file|
|
56
|
+
guard.watchers.each do |watcher|
|
57
|
+
matches = watcher.match(file)
|
58
|
+
next unless matches
|
59
|
+
|
60
|
+
if watcher.action
|
61
|
+
result = watcher.call_action(matches)
|
62
|
+
if guard.options[:any_return]
|
63
|
+
paths << result
|
64
|
+
elsif result.respond_to?(:empty?) && !result.empty?
|
65
|
+
paths << Array(result)
|
66
|
+
else
|
67
|
+
next
|
68
|
+
end
|
69
|
+
else
|
70
|
+
paths << matches[0]
|
71
|
+
end
|
72
|
+
|
73
|
+
break if guard.options[:first_match]
|
74
|
+
end
|
75
|
+
|
76
|
+
guard.options[:any_return] ? paths : paths.flatten.map(&:to_s)
|
77
|
+
end
|
78
|
+
end
|
79
|
+
|
80
|
+
# Tests if any of the files is the Guardfile.
|
81
|
+
#
|
82
|
+
# @param [Array<String>] files the files to test
|
83
|
+
# @return [Boolean] whether one of these files is the Guardfile
|
84
|
+
#
|
85
|
+
def self.match_guardfile?(files)
|
86
|
+
# TODO: move this method elsewhere
|
87
|
+
require "guard/guardfile/evaluator"
|
88
|
+
path = ::Guard::Guardfile::Evaluator.new(::Guard.options).guardfile_path
|
89
|
+
STDERR.puts "PATH: #{path.inspect}"
|
90
|
+
files.any? { |file| File.expand_path(file) == path }
|
91
|
+
end
|
92
|
+
|
93
|
+
# Test the watchers pattern against a file.
|
94
|
+
#
|
95
|
+
# @param [String] file the file to test
|
96
|
+
# @return [Array<String>] an array of matches (or containing a single path
|
97
|
+
# if the pattern is a string)
|
98
|
+
#
|
99
|
+
def match(string_or_pathname)
|
100
|
+
# TODO: use only match() - and show fnmatch example
|
101
|
+
file = string_or_pathname.to_s
|
102
|
+
return (file == @pattern ? [file] : nil) unless @pattern.is_a?(Regexp)
|
103
|
+
return unless (m = @pattern.match(file))
|
104
|
+
m = m.to_a
|
105
|
+
m[0] = file
|
106
|
+
m
|
107
|
+
end
|
108
|
+
|
109
|
+
# Executes a watcher action.
|
110
|
+
#
|
111
|
+
# @param [String, MatchData] matches the matched path or the match from the
|
112
|
+
# Regex
|
113
|
+
# @return [String] the final paths
|
114
|
+
#
|
115
|
+
def call_action(matches)
|
116
|
+
@action.arity > 0 ? @action.call(matches) : @action.call
|
117
|
+
rescue => ex
|
118
|
+
::Guard::UI.error "Problem with watch action!\n#{ ex.message }"
|
119
|
+
::Guard::UI.error ex.backtrace.join("\n")
|
120
|
+
end
|
121
|
+
end
|
122
|
+
end
|
data/man/guard.1
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
.\" generated with Ronn/v0.7.3
|
2
2
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
3
3
|
.
|
4
|
-
.TH "GUARD" "1" "
|
4
|
+
.TH "GUARD" "1" "November 2014" "" ""
|
5
5
|
.
|
6
6
|
.SH "NAME"
|
7
7
|
\fBguard\fR \- Guard keeps an eye on your file modifications\.
|
@@ -48,9 +48,6 @@ The following options are available:
|
|
48
48
|
\fB\-B\fR, \fB\-\-no\-bundler\-warning\fR Turn off warning when Bundler is not present\.
|
49
49
|
.
|
50
50
|
.P
|
51
|
-
\fB\-\-show\-deprecations\fR Turn on deprecation warnings\.
|
52
|
-
.
|
53
|
-
.P
|
54
51
|
\fB\-l\fR, \fB\-\-latency\fR Overwrite Listen\'s default latency\.
|
55
52
|
.
|
56
53
|
.P
|
data/man/guard.1.html
CHANGED
@@ -122,9 +122,6 @@
|
|
122
122
|
<p><code>-B</code>, <code>--no-bundler-warning</code>
|
123
123
|
Turn off warning when Bundler is not present.</p>
|
124
124
|
|
125
|
-
<p><code>--show-deprecations</code>
|
126
|
-
Turn on deprecation warnings.</p>
|
127
|
-
|
128
125
|
<p><code>-l</code>, <code>--latency</code>
|
129
126
|
Overwrite Listen's default latency.</p>
|
130
127
|
|
@@ -190,7 +187,7 @@ https://github.com/guard/guard/contributors</p>
|
|
190
187
|
|
191
188
|
<ol class='man-decor man-foot man foot'>
|
192
189
|
<li class='tl'></li>
|
193
|
-
<li class='tc'>
|
190
|
+
<li class='tc'>November 2014</li>
|
194
191
|
<li class='tr'>guard(1)</li>
|
195
192
|
</ol>
|
196
193
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: guard
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.9.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Thibaud Guillaume-Gentil
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-11-
|
11
|
+
date: 2014-11-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|
@@ -102,45 +102,39 @@ files:
|
|
102
102
|
- lib/guard/cli.rb
|
103
103
|
- lib/guard/cli.rb.orig
|
104
104
|
- lib/guard/commander.rb
|
105
|
-
- lib/guard/commander.rb.orig
|
106
105
|
- lib/guard/commands/all.rb
|
107
|
-
- lib/guard/commands/all.rb.orig
|
108
106
|
- lib/guard/commands/change.rb
|
109
107
|
- lib/guard/commands/notification.rb
|
110
108
|
- lib/guard/commands/pause.rb
|
111
109
|
- lib/guard/commands/reload.rb
|
112
|
-
- lib/guard/commands/reload.rb.orig
|
113
110
|
- lib/guard/commands/scope.rb
|
114
|
-
- lib/guard/commands/scope.rb.orig
|
115
111
|
- lib/guard/commands/show.rb
|
116
|
-
- lib/guard/
|
117
|
-
- lib/guard/
|
118
|
-
- lib/guard/
|
119
|
-
- lib/guard/
|
112
|
+
- lib/guard/config.rb
|
113
|
+
- lib/guard/deprecated/dsl.rb
|
114
|
+
- lib/guard/deprecated/guard.rb
|
115
|
+
- lib/guard/deprecated/guardfile.rb
|
120
116
|
- lib/guard/dsl.rb
|
117
|
+
- lib/guard/dsl.rb.orig
|
121
118
|
- lib/guard/dsl_describer.rb
|
122
119
|
- lib/guard/dsl_describer.rb.orig
|
123
120
|
- lib/guard/group.rb
|
124
|
-
- lib/guard/guard.rb
|
125
|
-
- lib/guard/guard.rb.orig
|
126
121
|
- lib/guard/guardfile.rb
|
127
|
-
- lib/guard/guardfile.rb.orig
|
128
122
|
- lib/guard/guardfile/evaluator.rb
|
129
|
-
- lib/guard/guardfile/evaluator.rb.orig
|
130
123
|
- lib/guard/guardfile/generator.rb
|
131
124
|
- lib/guard/interactor.rb
|
132
125
|
- lib/guard/internals/debugging.rb
|
133
|
-
- lib/guard/internals/
|
134
|
-
- lib/guard/internals/
|
126
|
+
- lib/guard/internals/environment.rb
|
127
|
+
- lib/guard/internals/helpers.rb
|
135
128
|
- lib/guard/internals/tracing.rb
|
136
|
-
- lib/guard/internals/
|
129
|
+
- lib/guard/internals/traps.rb
|
137
130
|
- lib/guard/jobs/base.rb
|
138
131
|
- lib/guard/jobs/pry_wrapper.rb
|
139
132
|
- lib/guard/jobs/sleep.rb
|
133
|
+
- lib/guard/metadata.rb
|
140
134
|
- lib/guard/notifier.rb
|
141
135
|
- lib/guard/notifier.rb.orig
|
136
|
+
- lib/guard/notifier/detected.rb
|
142
137
|
- lib/guard/notifiers/base.rb
|
143
|
-
- lib/guard/notifiers/base.rb.orig
|
144
138
|
- lib/guard/notifiers/emacs.rb
|
145
139
|
- lib/guard/notifiers/file_notifier.rb
|
146
140
|
- lib/guard/notifiers/gntp.rb
|
@@ -151,28 +145,26 @@ files:
|
|
151
145
|
- lib/guard/notifiers/terminal_notifier.rb
|
152
146
|
- lib/guard/notifiers/terminal_title.rb
|
153
147
|
- lib/guard/notifiers/tmux.rb
|
154
|
-
- lib/guard/notifiers/tmux.rb.orig
|
155
148
|
- lib/guard/options.rb
|
156
149
|
- lib/guard/plugin.rb
|
157
150
|
- lib/guard/plugin/base.rb
|
158
151
|
- lib/guard/plugin/hooker.rb
|
159
152
|
- lib/guard/plugin_util.rb
|
160
|
-
- lib/guard/plugin_util.rb.orig
|
161
153
|
- lib/guard/rake_task.rb
|
162
154
|
- lib/guard/reevaluator.rb
|
155
|
+
- lib/guard/reevaluator.rb.orig
|
163
156
|
- lib/guard/runner.rb
|
164
|
-
- lib/guard/
|
165
|
-
- lib/guard/setuper.rb
|
166
|
-
- lib/guard/setuper.rb.orig
|
157
|
+
- lib/guard/session.rb
|
167
158
|
- lib/guard/sheller.rb
|
168
159
|
- lib/guard/templates/Guardfile
|
160
|
+
- lib/guard/templates/Guardfile.orig
|
169
161
|
- lib/guard/terminal.rb
|
170
162
|
- lib/guard/ui.rb
|
171
|
-
- lib/guard/ui.rb.orig
|
172
163
|
- lib/guard/ui/colors.rb
|
173
164
|
- lib/guard/version.rb
|
174
165
|
- lib/guard/version.rb.orig
|
175
166
|
- lib/guard/watcher.rb
|
167
|
+
- lib/guard/watcher.rb.orig
|
176
168
|
- man/guard.1
|
177
169
|
- man/guard.1.html
|
178
170
|
homepage: http://guardgem.org
|
@@ -195,7 +187,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
195
187
|
version: '0'
|
196
188
|
requirements: []
|
197
189
|
rubyforge_project:
|
198
|
-
rubygems_version: 2.
|
190
|
+
rubygems_version: 2.2.2
|
199
191
|
signing_key:
|
200
192
|
specification_version: 4
|
201
193
|
summary: Guard keeps an eye on your file modifications
|