elasticity 6.0.2 → 6.0.3
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/HISTORY.md +4 -0
- data/lib/elasticity/job_flow.rb +1 -0
- data/lib/elasticity/version.rb +1 -1
- data/spec/lib/elasticity/aws_request_v4_spec.rb +1 -1
- data/spec/lib/elasticity/job_flow_spec.rb +3 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2837770056fa28f6a583414032f02551a44988be
|
|
4
|
+
data.tar.gz: 85f0ded8fb1bc43929d18ae4d6b4569bf2db10c6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d935cf72fb59b0058cf3daaabc0cba7ae8b7ad941255c79ba17d5d2ba4601f60d7ae5ec3ed5bc1a23284b4cd6744ac542057b412a0d9daf051169504b839b265
|
|
7
|
+
data.tar.gz: a26422bca24ca7830ed2217e9c4e198ca070ed0d52211f302aeb3b6dcd13ebf2a51d1c7274e0da1f179c8742b21427ade9b992170cd686a891f30ee0d2d20d75
|
data/HISTORY.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
## 6.0.3 - July 24, 2015
|
|
2
|
+
|
|
3
|
+
- Including PR [#116](https://github.com/rslifka/elasticity/pull/116) - "Allow jobflow_id to be accessed after run". Thank you [@robert2d](https://github.com/robert2d)!
|
|
4
|
+
|
|
1
5
|
## 6.0.2 - July 20, 2015
|
|
2
6
|
|
|
3
7
|
- Including PR [#111](https://github.com/rslifka/elasticity/pull/111) - "Handle steps status that hasn't run yet". Thank you [@robert2d](https://github.com/robert2d)!
|
data/lib/elasticity/job_flow.rb
CHANGED
data/lib/elasticity/version.rb
CHANGED
|
@@ -123,7 +123,7 @@ describe Elasticity::AwsRequestV4 do
|
|
|
123
123
|
|
|
124
124
|
describe '.aws_v4_signature' do
|
|
125
125
|
it 'should create the proper signature' do
|
|
126
|
-
subject.send(:aws_v4_signature).should == '
|
|
126
|
+
subject.send(:aws_v4_signature).should == 'a88225e952766aa7e9050ef7615db710e1c8f18e5af873392fd0493899c37a30'
|
|
127
127
|
end
|
|
128
128
|
end
|
|
129
129
|
|
|
@@ -22,6 +22,7 @@ describe Elasticity::JobFlow do
|
|
|
22
22
|
expect(subject.enable_debugging).to eql(false)
|
|
23
23
|
expect(subject.job_flow_role).to eql(nil)
|
|
24
24
|
expect(subject.service_role).to eql(nil)
|
|
25
|
+
expect(subject.jobflow_id).to eql(nil)
|
|
25
26
|
end
|
|
26
27
|
end
|
|
27
28
|
|
|
@@ -589,7 +590,8 @@ describe Elasticity::JobFlow do
|
|
|
589
590
|
|
|
590
591
|
it 'should return the jobflow ID' do
|
|
591
592
|
Elasticity::EMR.stub(:new).and_return(emr)
|
|
592
|
-
jobflow_with_steps.run.
|
|
593
|
+
expect(jobflow_with_steps.run).to eq('JOBFLOW_ID')
|
|
594
|
+
expect(jobflow_with_steps.jobflow_id).to eq('JOBFLOW_ID')
|
|
593
595
|
end
|
|
594
596
|
|
|
595
597
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: elasticity
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 6.0.
|
|
4
|
+
version: 6.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Robert Slifka
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-07-
|
|
11
|
+
date: 2015-07-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rest-client
|