capistrano_sentinel 0.0.16 → 0.0.17

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
  SHA1:
3
- metadata.gz: 8b6b182133b14542484ea0826866219fe15b3f4b
4
- data.tar.gz: e8a7a2543dbf262fc31a313793e601dc190ec95e
3
+ metadata.gz: 3ad564c4217ea854a47f2fc1903a557cdef3b391
4
+ data.tar.gz: 772f2601fb01b12857cd464fbb10f25758b0f1f4
5
5
  SHA512:
6
- metadata.gz: 790ea96121af5f8ddda552c560b762da0774239a234da419b3bd2a1a937d729e68e6d3265fb803d429e28ed436d404ae49c501a402cb06c93903717208bf345a
7
- data.tar.gz: 3a5041ea520987f0d7fcdfaaa55c08f5d598b33bba2bcc23e98df9c0b6b1bd4491cb8448a043496e9623741c5be08bd13137f310c8f82e2f365cb5e63559e72f
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? || BLANK_RE2 === self
117
+ empty? || /\A[[:space:]]*\z/ === self
119
118
  end
120
119
  end
121
120
 
@@ -17,7 +17,7 @@ module CapistranoSentinel
17
17
  # minor release version
18
18
  MINOR = 0
19
19
  # tiny release version
20
- TINY = 16
20
+ TINY = 17
21
21
  # prelease version ( set this only if it is a prelease)
22
22
  PRE = nil
23
23
 
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.16
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-14 00:00:00.000000000 Z
11
+ date: 2016-07-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: websocket