guard 1.2.0 → 1.2.1
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.
- data/CHANGELOG.md +9 -1
- data/lib/guard.rb +2 -1
- data/lib/guard/version.rb +1 -1
- metadata +2 -2
data/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,16 @@
|
|
|
1
1
|
## Master
|
|
2
2
|
|
|
3
|
+
### 1.2.1 - 20 June, 2012
|
|
4
|
+
|
|
5
|
+
### Bug fix
|
|
6
|
+
|
|
7
|
+
- Work around a Listen issue where the stop task isn't executed. ([@netzpirat][])
|
|
8
|
+
|
|
3
9
|
### 1.2.0 - 20 June, 2012
|
|
4
10
|
|
|
5
|
-
|
|
11
|
+
### Improvements
|
|
12
|
+
|
|
13
|
+
- Add a [Coolline](https://github.com/Mon-Ouie/coolline) based interactor (Ruby 1.9.3 only). ([@netzpirat][])
|
|
6
14
|
- More flexible command parser for all interactors. ([@netzpirat][])
|
|
7
15
|
- Add 'show' command to describe all plugins in the interactor. ([@netzpirat][])
|
|
8
16
|
- Add 'change' command to trigger a file change event in the interactor. ([@netzpirat][])
|
data/lib/guard.rb
CHANGED
|
@@ -163,10 +163,11 @@ module Guard
|
|
|
163
163
|
# Stop Guard listening to file changes
|
|
164
164
|
#
|
|
165
165
|
def stop
|
|
166
|
-
listener.stop
|
|
167
166
|
interactor.stop if interactor
|
|
168
167
|
runner.run(:stop)
|
|
169
168
|
UI.info 'Bye bye...', :reset => true
|
|
169
|
+
#TODO: Move to top when https://github.com/guard/listen/issues/46 is resolved
|
|
170
|
+
listener.stop
|
|
170
171
|
end
|
|
171
172
|
|
|
172
173
|
# Reload Guardfile and all Guards currently enabled.
|
data/lib/guard/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: guard
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -197,7 +197,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
197
197
|
version: '0'
|
|
198
198
|
segments:
|
|
199
199
|
- 0
|
|
200
|
-
hash:
|
|
200
|
+
hash: 4057517212735074310
|
|
201
201
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
202
202
|
none: false
|
|
203
203
|
requirements:
|