Package not found. Please check the package name and try again.
vx-message 0.3.0 → 0.4.0
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/lib/vx/message/testing.rb +2 -2
- data/lib/vx/message/version.rb +1 -1
- data/proto/messages.proto +7 -7
- data/spec/lib/message_spec.rb +0 -6
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 492b64032e743aa42adb15bd915b5374dcaa42bb
|
|
4
|
+
data.tar.gz: 750ceccf7a3e0073a5daee85ded8613a0e970002
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9283bb93ba85d12737cb3f592f4067cec5cef9179a5300d6981c0d00bc3c8f765401e84921cdaba7688c8c9869998acb28d942763f42ea5d8378b57d1d70474f
|
|
7
|
+
data.tar.gz: 9d6611a3e2a1539aa26960f306cd12fe8de45e772df34bca58116b3767f213288a33f801628c3d1fd7b08fba384307e332156361528d57bcb6541379b1990043
|
data/lib/vx/message/testing.rb
CHANGED
|
@@ -103,13 +103,13 @@ module Vx
|
|
|
103
103
|
|
|
104
104
|
def test_attributes(options = {})
|
|
105
105
|
options.merge({
|
|
106
|
+
project_id: options[:project_id] || 1,
|
|
106
107
|
id: options[:id] || 1,
|
|
107
108
|
name: options[:name] || 'evrone/test-repo',
|
|
108
109
|
job_id: options[:job_id] || 2,
|
|
109
110
|
before_script: options[:before_script] || 'echo before_script',
|
|
110
111
|
script: options[:script] || 'echo script',
|
|
111
|
-
after_script: options[:after_script] || 'echo after_script'
|
|
112
|
-
matrix_keys: options[:matrix_keys] || %w{ rvm:2.0.0 }
|
|
112
|
+
after_script: options[:after_script] || 'echo after_script'
|
|
113
113
|
})
|
|
114
114
|
end
|
|
115
115
|
|
data/lib/vx/message/version.rb
CHANGED
data/proto/messages.proto
CHANGED
|
@@ -12,13 +12,13 @@ message PerformBuild {
|
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
message PerformJob {
|
|
15
|
-
required uint64
|
|
16
|
-
required
|
|
17
|
-
required
|
|
18
|
-
required
|
|
19
|
-
required string
|
|
20
|
-
required string
|
|
21
|
-
|
|
15
|
+
required uint64 project_id = 1
|
|
16
|
+
required uint64 id = 2;
|
|
17
|
+
required string name = 3;
|
|
18
|
+
required uint64 job_id = 4;
|
|
19
|
+
required string before_script = 5;
|
|
20
|
+
required string script = 6;
|
|
21
|
+
required string after_script = 7;
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
message BuildLog {
|
data/spec/lib/message_spec.rb
CHANGED