capistrano_sentinel 0.1.0 → 0.1.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a12a7decc74d24d694d401c425a2e65ad63981b0
4
- data.tar.gz: 13679aa0797a83b5663f457d73be8162127ade07
3
+ metadata.gz: b5e3869e0b16593602a9b09e0368a46ad2239532
4
+ data.tar.gz: b241c492682f6c83e292b8f3569dd2c48295bef3
5
5
  SHA512:
6
- metadata.gz: c0156f29be94f8de5d859dcc93707abeec7f0c220d57829201fb081a8ee66d2df32f961d822e75619a93ae7345ce5044466442288ffb0e48dc336f9b1a40ec85
7
- data.tar.gz: e7cca61af2343346ae7f0f3eb7e09cc9e0a2a75a7bb74f9311a02932f3e2683283d519d3799de107226765885a4184e9ea78e221ea6fafaea41c12388ca525dc
6
+ metadata.gz: bc142cf41f78c6d620133465609aedd9d79bad1191718596a3ca5a1eef104983d9a14f991076a90ce46544a1533138be7c2d3deb0c1d933aa4650988c2d1a82a
7
+ data.tar.gz: 0c82e93bcd46a867e802c68d9c8bb2a8d371ab3dfbb67d83904597658474baeecf683f3090341794c4e46e3027130f9c5aa9f354ffbbbc7008c1bb30bad86764
data/.travis.yml CHANGED
@@ -6,7 +6,10 @@ rvm:
6
6
  - 2.2.2
7
7
  - 2.2.5
8
8
  - 2.3.1
9
+ - 2.3.2
10
+ - 2.3.3
9
11
  env:
10
12
  - RAILS_ENV=test RACK_ENV=test
11
13
  notifications:
12
14
  email: false
15
+
@@ -32,19 +32,19 @@ module CapistranoSentinel
32
32
  @retry_time = 0
33
33
  @wait_execution = true
34
34
  @hook_stdin_and_stdout = true
35
- @max_frame_size = ::Websocket.max_frame_size
36
- @should_raise = ::Websocket.should_raise
35
+ @max_frame_size = ::WebSocket.max_frame_size
36
+ @should_raise = ::WebSocket.should_raise
37
37
  end
38
38
 
39
39
 
40
40
  def max_frame_size=(val)
41
- ::Websocket.max_frame_size = @max_frame_size = val
41
+ ::WebSocket.max_frame_size = @max_frame_size = val
42
42
  end
43
43
 
44
44
  def should_raise=(val)
45
- ::Websocket.should_raise = @should_raise = val
45
+ ::WebSocket.should_raise = @should_raise = val
46
46
  end
47
47
 
48
-
48
+
49
49
  end
50
50
  end
@@ -17,10 +17,10 @@ module CapistranoSentinel
17
17
  # minor release version
18
18
  MINOR = 1
19
19
  # tiny release version
20
- TINY = 0
20
+ TINY = 1
21
21
  # prelease version ( set this only if it is a prelease)
22
22
  PRE = nil
23
-
23
+
24
24
  # generates the version string
25
25
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
26
26
  end
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.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - bogdanRada
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-10-03 00:00:00.000000000 Z
11
+ date: 2016-11-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: websocket
@@ -75,10 +75,11 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  version: '0'
76
76
  requirements: []
77
77
  rubyforge_project:
78
- rubygems_version: 2.6.6
78
+ rubygems_version: 2.5.2
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: CapistranoSentinel is a simple ruby implementation that allows you to emit
82
82
  websocket events before a task is invoked by Capistrano.
83
83
  test_files:
84
84
  - spec/spec_helper.rb
85
+ has_rdoc: