capistrano_sentinel 0.0.16 → 0.0.17
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3ad564c4217ea854a47f2fc1903a557cdef3b391
|
|
4
|
+
data.tar.gz: 772f2601fb01b12857cd464fbb10f25758b0f1f4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 78225490fe30ee11d35009404a7e6f25d96855d93d3db7312839ffef927aeaf2a7b90cb5057bc90da450f7d8a25b4906d9ee375c4c72c753d2cf07d6153d8b2e
|
|
7
|
+
data.tar.gz: a42fce87a1915ac3dd929e98ef92bb7051aae54970f3b36aac035f8831ab02f531b65f70cb0bf15d0943c0ec47e2e28977e461a6e101929ff55490d25a2b5d54
|
|
@@ -97,7 +97,6 @@ class Hash
|
|
|
97
97
|
end
|
|
98
98
|
|
|
99
99
|
class String
|
|
100
|
-
BLANK_RE2 = /\A[[:space:]]*\z/
|
|
101
100
|
|
|
102
101
|
# A string is blank if it's empty or contains whitespaces only:
|
|
103
102
|
#
|
|
@@ -115,7 +114,7 @@ class String
|
|
|
115
114
|
# The regexp that matches blank strings is expensive. For the case of empty
|
|
116
115
|
# strings we can speed up this method (~3.5x) with an empty? call. The
|
|
117
116
|
# penalty for the rest of strings is marginal.
|
|
118
|
-
empty? ||
|
|
117
|
+
empty? || /\A[[:space:]]*\z/ === self
|
|
119
118
|
end
|
|
120
119
|
end
|
|
121
120
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano_sentinel
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.17
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- bogdanRada
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-07-
|
|
11
|
+
date: 2016-07-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: websocket
|