aws-swf 0.1.4 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +6 -3
- data/Gemfile.lock +11 -5
- data/lib/swf.rb +1 -1
- data/spec/swf/decision_task_handler_spec.rb +1 -1
- metadata +18 -2
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,7 +1,13 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
aws-swf (0.1.5)
|
5
|
+
aws-sdk (~> 1)
|
6
|
+
|
1
7
|
GEM
|
2
8
|
remote: https://rubygems.org/
|
3
9
|
specs:
|
4
|
-
aws-sdk (1.
|
10
|
+
aws-sdk (1.14.1)
|
5
11
|
json (~> 1.4)
|
6
12
|
nokogiri (< 1.6.0)
|
7
13
|
uuidtools (~> 2.1)
|
@@ -13,16 +19,16 @@ GEM
|
|
13
19
|
rspec-core (~> 2.14.0)
|
14
20
|
rspec-expectations (~> 2.14.0)
|
15
21
|
rspec-mocks (~> 2.14.0)
|
16
|
-
rspec-core (2.14.
|
22
|
+
rspec-core (2.14.4)
|
17
23
|
rspec-expectations (2.14.0)
|
18
24
|
diff-lcs (>= 1.1.3, < 2.0)
|
19
|
-
rspec-mocks (2.14.
|
25
|
+
rspec-mocks (2.14.2)
|
20
26
|
uuidtools (2.1.4)
|
21
27
|
|
22
28
|
PLATFORMS
|
23
29
|
ruby
|
24
30
|
|
25
31
|
DEPENDENCIES
|
26
|
-
aws-
|
32
|
+
aws-swf!
|
27
33
|
rake
|
28
|
-
rspec
|
34
|
+
rspec (~> 2.1)
|
data/lib/swf.rb
CHANGED
@@ -18,7 +18,7 @@ module SWF
|
|
18
18
|
end
|
19
19
|
|
20
20
|
# in the runner context, where domain_name comes from ENV settings we call
|
21
|
-
#
|
21
|
+
# SWF.domain_name = MyApp::Settings.swf_domain
|
22
22
|
def domain_name=(d)
|
23
23
|
@domain_name = d
|
24
24
|
end
|
@@ -98,7 +98,7 @@ describe subject_class do
|
|
98
98
|
}
|
99
99
|
|
100
100
|
describe '#workflow_started_event' do
|
101
|
-
it 'raises
|
101
|
+
it 'raises SWF::MissingWorkflowStartedEvent if there is no WorkflowExecutionStartedEvent' do
|
102
102
|
->{ subject.send(:workflow_started_event) }.should raise_exception(SWF::MissingWorkflowStartedEvent)
|
103
103
|
end
|
104
104
|
it 'otherwise returns the workflow started event' do
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-swf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,8 +10,24 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2013-07
|
13
|
+
date: 2013-08-07 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: aws-sdk
|
17
|
+
requirement: !ruby/object:Gem::Requirement
|
18
|
+
none: false
|
19
|
+
requirements:
|
20
|
+
- - ~>
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '1'
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
none: false
|
27
|
+
requirements:
|
28
|
+
- - ~>
|
29
|
+
- !ruby/object:Gem::Version
|
30
|
+
version: '1'
|
15
31
|
- !ruby/object:Gem::Dependency
|
16
32
|
name: rspec
|
17
33
|
requirement: !ruby/object:Gem::Requirement
|