guard 2.16.0 → 2.16.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6028e51f5d1af8b50a11ed0b2d222b513aa4ee844b6ae881abae85914b91be2f
4
- data.tar.gz: '09661a90820c8821a148d7091eaca9e2307826450ec4e5785e397a7bbba04836'
3
+ metadata.gz: c51ad2df488dd4e7fd675358a3277ab105ec798dccffb6e62c9c713ef32fb4aa
4
+ data.tar.gz: 2d14c133e937b466588d3d6c78892aa8557db8aa8d0649438a90a0156e035ce3
5
5
  SHA512:
6
- metadata.gz: 53ee842c043a00283654646d3a47cc57962f80e12ec171ecf61666bd65d2d5b23dc29e788ed25f72861db03fc9185905e34fd3b877ac6a3be3637fbf9f1400f1
7
- data.tar.gz: 6dcdbe28398673c04ad1a62127d83e913cc019afdbb2927ea0807abf0baf4f68882957f656801e86d951798ad543ec8cda99e2e26f7225041f4840c771e35448
6
+ metadata.gz: 95881ca9d802a118f575360826d647629d840d902f83599f4225fd683a0d744c00f394ab5a6d60fd39e05723395946897d7921dc4f6e8b81f4a6a1ffa5f1214d
7
+ data.tar.gz: 55fe2797a631e8d521094bf2bdf5d65a04b897ff75768e2e250438ccccabc3890df269ad585dcd369dde091067eaff7603e4f483a886b12857e55ad4c6b4fe3f
data/README.md CHANGED
@@ -151,6 +151,23 @@ Before reporting a problem, please read how to [File an issue](https://github.co
151
151
  ## Development / Contributing
152
152
 
153
153
  See the [Contributing Guide](https://github.com/guard/guard/blob/master/CONTRIBUTING.md#development).
154
+
155
+ ## Releasing
156
+
157
+ ### Prerequisites
158
+
159
+ * You must have commit rights to the GitHub repository.
160
+ * You must have push rights for rubygems.org.
161
+
162
+ ### How to release
163
+
164
+ 1. Determine which would be the correct next version number according to [semver](http://semver.org/).
165
+ 1. Update the version in `./lib/guard/version.rb`.
166
+ 1. Commit the version in a single commit, the message should be "Bump VERSION to X.Y.Z".
167
+ 1. Push and open a pull request.
168
+ 1. Once CI is green, merge the pull request.
169
+ 1. Pull the changes locally and run `bundle exec rake release:full`; this will tag, push to GitHub, publish to rubygems.org, and publish the [release notes](https://github.com/guard/guard/releases) .
170
+
154
171
  ### Author
155
172
 
156
173
  [Thibaud Guillaume-Gentil](https://github.com/thibaudgg) ([@thibaudgg](https://twitter.com/thibaudgg))
@@ -53,8 +53,8 @@ module Guard
53
53
  end
54
54
 
55
55
  def stop
56
- listener.stop
57
- interactor.background
56
+ listener&.stop
57
+ interactor&.background
58
58
  UI.debug "Guard stops all plugins"
59
59
  Runner.new.run(:stop)
60
60
  Notifier.disconnect
@@ -1,3 +1,3 @@
1
1
  module Guard
2
- VERSION = "2.16.0"
2
+ VERSION = "2.16.1"
3
3
  end
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.16.0
4
+ version: 2.16.1
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: 2019-10-31 00:00:00.000000000 Z
11
+ date: 2019-11-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor