guard 2.12.1 → 2.12.2
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/bin/guard +22 -10
- data/lib/guard/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 87253f48163a3acc225be9e48f3f2490f5050e19
|
4
|
+
data.tar.gz: eae1d724e95f3ea6bd79e5ba319f0effb98a1346
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 904ece1301c3125b2d094a5ddd228661a6dc5632d973729ade777e793982d8d1ed8f820f6e6a25b293ee097dd9835b8750a1224c92478cef0fcc599c0a7caef2
|
7
|
+
data.tar.gz: 1bd00a88245a6b828e219abb8ec724be5f1bc7e6b68dbabb4e67427be745cb26f6ec4d52c77ce2e415586c0f930391a1b9cd7ac6853805e4cfad1701751e1464
|
data/bin/guard
CHANGED
@@ -1,18 +1,30 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
3
|
+
require "pathname"
|
4
|
+
|
5
|
+
default = Pathname(ENV.fetch("BUNDLE_GEMFILE", "Gemfile"))
|
6
|
+
relative_to_binstub = Pathname(__FILE__).realpath + "../../Gemfile"
|
7
|
+
gemfile = [default, relative_to_binstub].detect(&:exist?)
|
8
|
+
|
9
|
+
if gemfile
|
10
|
+
ENV["BUNDLE_GEMFILE"] = gemfile.to_s
|
11
|
+
require "rubygems"
|
12
|
+
require "bundler/setup"
|
13
|
+
else
|
14
|
+
require "rubygems"
|
15
|
+
end
|
16
|
+
|
17
|
+
def ignore_interrupts(*args)
|
18
|
+
pid = spawn(*args)
|
19
|
+
begin
|
20
|
+
Process.wait(pid)
|
21
|
+
rescue Interrupt
|
22
|
+
retry
|
12
23
|
end
|
13
24
|
end
|
14
25
|
|
15
|
-
|
26
|
+
guard_core_path = Gem.bin_path("guard", "_guard-core")
|
27
|
+
while !ignore_interrupts(guard_core_path, *ARGV) && $?.exitstatus == 2
|
16
28
|
puts("Restarting guard...")
|
17
29
|
end
|
18
30
|
exit($?.exitstatus)
|
data/lib/guard/version.rb
CHANGED
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.12.
|
4
|
+
version: 2.12.2
|
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: 2015-02-
|
11
|
+
date: 2015-02-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|