hive-messages 1.0.6 → 1.0.7

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: 49f2f3e6d56e4a3a64d6076a12d8c6cb919f957f
4
- data.tar.gz: 3a822853076057e155bb5ae22e87bc2eb791e34c
3
+ metadata.gz: 9446d0f21c101e1b0dce031a29a9b8b9bb6eba17
4
+ data.tar.gz: c5fcf0cef2b7a0a3bc46ad8afbd90ff9cad26af9
5
5
  SHA512:
6
- metadata.gz: 540d225e37d8e2aa524c4e91f09f84ca7192c71e1d5ad1f752db3714165ecc4dc1d529ce7aef629010903bb74666c6ac7e35ede238fd2d45db44d761218f045a
7
- data.tar.gz: c1f7e28fec9ffd14e15e9c6983f607461356e62bc742ef7d9ac43d7744c8c21cf3190aa4f9474621601808d9e26b7e409673cac55ee51805a10bb2f6ea718147
6
+ metadata.gz: d47dd47c60a09f7b8e02cecdf8f8cef3d0b22d6fa7587be174a8979bdcdcd019c64148c01f4dbde63d76a31d50525eb15fd1259867649bfce2878f02f68fc48b
7
+ data.tar.gz: 71657f55edd3b647bd559f5d0a3aba97272d4c118b2bc73e8ca0039d2679438803366af145892ad3bcaf40ef3fb538835bd3b127a2820436498547c8bb376d8e
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "hive-messages"
7
- spec.version = '1.0.6'
7
+ spec.version = '1.0.7'
8
8
  spec.authors = ["David Buckhurst", "Paul Carey"]
9
9
  spec.email = ["[email protected]"]
10
10
  spec.summary = %q{Hive communication library.}
@@ -11,6 +11,7 @@ module Hive
11
11
  attribute :branch, String
12
12
  attribute :execution_directory, String
13
13
  attribute :target, Hash
14
+ attribute :install_build, Boolean
14
15
  attribute :execution_variables, ExecutionVariables
15
16
  attribute :reservation_details, Hash
16
17
  attribute :device_id, Integer
@@ -9,6 +9,7 @@ module Hive
9
9
  property :branch
10
10
  property :execution_directory
11
11
  property :target
12
+ property :install_build
12
13
  property :execution_variables
13
14
  property :reservation_details
14
15
  property :device_id
@@ -8,8 +8,10 @@ describe Hive::Representers::JobRepresenter do
8
8
  attribute :command
9
9
  attribute :job_id
10
10
  attribute :repository
11
+ attribute :branch
11
12
  attribute :execution_directory
12
13
  attribute :target
14
+ attribute :install_build
13
15
  attribute :execution_variables
14
16
  attribute :reservation_details
15
17
  attribute :device_id
@@ -44,8 +46,10 @@ describe Hive::Representers::JobRepresenter do
44
46
  command: "cmd",
45
47
  job_id: 99,
46
48
  repository: "svn://",
49
+ branch: "test_branch",
47
50
  execution_directory: ".",
48
51
  target: target,
52
+ install_build: true,
49
53
  execution_variables: execution_variables,
50
54
  reservation_details: reservation_details,
51
55
  device_id: 23,
@@ -79,8 +83,10 @@ describe Hive::Representers::JobRepresenter do
79
83
  its(:command) { should eq job_attributes[:command] }
80
84
  its(:job_id) { should eq job_attributes[:job_id] }
81
85
  its(:repository) { should eq job_attributes[:repository] }
86
+ its(:branch) { should eq job_attributes[:branch] }
82
87
  its(:execution_directory) { should eq job_attributes[:execution_directory] }
83
88
  its(:target) { should eq job_attributes[:target] }
89
+ its(:install_build) { should eq job_attributes[:install_build] }
84
90
  its(:execution_variables) { should eq execution_variables }
85
91
  its(:reservation_details) { should eq reservation_details }
86
92
  its(:device_id) { should eq job_attributes[:device_id] }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hive-messages
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.6
4
+ version: 1.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Buckhurst
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-11-24 00:00:00.000000000 Z
12
+ date: 2017-01-19 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: virtus
@@ -256,7 +256,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
256
256
  version: '0'
257
257
  requirements: []
258
258
  rubyforge_project:
259
- rubygems_version: 2.5.1
259
+ rubygems_version: 2.6.8
260
260
  signing_key:
261
261
  specification_version: 4
262
262
  summary: Hive communication library.
OSZAR »