vx-message 0.6.0 → 0.6.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
  SHA1:
3
- metadata.gz: f8f8d71cae4e55deab7701669d987c6926505175
4
- data.tar.gz: 624c10e3bc1203e05233ac5f1277d5acac3f0615
3
+ metadata.gz: 04933a1cf80f8e03a7f09a1166206de6f7f8d39a
4
+ data.tar.gz: 7176d458002e39499dd7b3cce0e528036166b189
5
5
  SHA512:
6
- metadata.gz: 66a6c6eb52c8e2a2f193f0a7933b318a7530953dd4d4f0ec5acff0ab11329d0a8c02d7839667be8f138b4e73149d8aa49f4ce65d9e87c656787db8ac3f27c88c
7
- data.tar.gz: 8da2d15e9f597aba52ae5886fc4d84e63d15ac51ab92c911e0855d9ed88646778e85af16dfc01027872e492d4f7a9d6b493ac74b36450b4eb307b282a0d0a9aa
6
+ metadata.gz: a50425c342165766e08b1982c8b35878a4231097b1c6301a0b884d3ca9c7704bf55a2870092b41ffa8098a60a93925fc29fcd7b01138d4c283012a102539a97a
7
+ data.tar.gz: 127babd1504d246a8fd771de90c142c55a74d6ec2a21386a374dea28f541f268243096bf708895258165cc61c9f44ea458ae7e2b644b59b435dc294c9d8305d2
@@ -4,10 +4,6 @@ require "beefcake"
4
4
  module Vx
5
5
  module Message
6
6
 
7
- class PerformBuild
8
- include Beefcake::Message
9
- end
10
-
11
7
  class PerformJob
12
8
  include Beefcake::Message
13
9
  end
@@ -28,17 +24,6 @@ module Vx
28
24
  end
29
25
  end
30
26
 
31
- class PerformBuild
32
- required :id, :uint64, 1
33
- required :name, :string, 2
34
- required :src, :string, 3
35
- required :sha, :string, 4
36
- optional :deploy_key, :string, 6
37
- required :travis, :string, 7
38
- required :branch, :string, 8
39
- optional :pull_request_id, :uint64, 9
40
- end
41
-
42
27
  class PerformJob
43
28
  required :company_id, :string, 1
44
29
  required :company_name, :string, 2
@@ -53,6 +38,8 @@ module Vx
53
38
  required :script, :string, 11
54
39
  required :after_script, :string, 12
55
40
  optional :image, :string, 13
41
+ optional :timeout, :uint64, 14
42
+ optional :read_timeout, :uint64, 15
56
43
  end
57
44
 
58
45
  class JobLog
@@ -1,5 +1,5 @@
1
1
  module Vx
2
2
  module Message
3
- VERSION = "0.6.0"
3
+ VERSION = "0.6.1"
4
4
  end
5
5
  end
data/proto/messages.proto CHANGED
@@ -18,6 +18,9 @@ message PerformJob {
18
18
  required string script = 11;
19
19
  required string after_script = 12;
20
20
  optional string image = 13;
21
+
22
+ optional uint64 timeout = 14;
23
+ optional uint64 read_timeout = 15;
21
24
  }
22
25
 
23
26
  message JobLog {
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vx-message
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dmitry Galinsky
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-06-27 00:00:00.000000000 Z
11
+ date: 2014-06-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: beefcake