oflow 1.0.1 → 1.0.2
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.
- data/README.md +5 -1
- data/lib/oflow/version.rb +1 -1
- metadata +15 -14
- checksums.yaml +0 -7
data/README.md
CHANGED
|
@@ -25,7 +25,11 @@ Follow [@peterohler on Twitter](http://twitter.com/#!/peterohler) for announceme
|
|
|
25
25
|
|
|
26
26
|
## Release Notes
|
|
27
27
|
|
|
28
|
-
###
|
|
28
|
+
### Release 1.0.2
|
|
29
|
+
|
|
30
|
+
- Updated GemChart sample to handle poor connections better.
|
|
31
|
+
|
|
32
|
+
### Release 1.0.1
|
|
29
33
|
|
|
30
34
|
- Fixed the set option command line feature.
|
|
31
35
|
|
data/lib/oflow/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: oflow
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
|
+
prerelease:
|
|
5
6
|
platform: ruby
|
|
6
7
|
authors:
|
|
7
8
|
- Peter Ohler
|
|
8
9
|
autorequire:
|
|
9
10
|
bindir: bin
|
|
10
11
|
cert_chain: []
|
|
11
|
-
date:
|
|
12
|
+
date: 2016-06-26 00:00:00.000000000 Z
|
|
12
13
|
dependencies: []
|
|
13
14
|
description: Operations Workflow in Ruby. This implements a workflow/process flow
|
|
14
15
|
using multiple task nodes that each have their own queues and execution thread.
|
|
@@ -18,11 +19,7 @@ extensions: []
|
|
|
18
19
|
extra_rdoc_files:
|
|
19
20
|
- README.md
|
|
20
21
|
files:
|
|
21
|
-
- LICENSE
|
|
22
|
-
- README.md
|
|
23
|
-
- lib/oflow.rb
|
|
24
22
|
- lib/oflow/actor.rb
|
|
25
|
-
- lib/oflow/actors.rb
|
|
26
23
|
- lib/oflow/actors/balancer.rb
|
|
27
24
|
- lib/oflow/actors/errorhandler.rb
|
|
28
25
|
- lib/oflow/actors/httpserver.rb
|
|
@@ -35,6 +32,7 @@ files:
|
|
|
35
32
|
- lib/oflow/actors/shellrepeat.rb
|
|
36
33
|
- lib/oflow/actors/timer.rb
|
|
37
34
|
- lib/oflow/actors/trigger.rb
|
|
35
|
+
- lib/oflow/actors.rb
|
|
38
36
|
- lib/oflow/box.rb
|
|
39
37
|
- lib/oflow/env.rb
|
|
40
38
|
- lib/oflow/errors.rb
|
|
@@ -47,11 +45,12 @@ files:
|
|
|
47
45
|
- lib/oflow/pattern.rb
|
|
48
46
|
- lib/oflow/stamp.rb
|
|
49
47
|
- lib/oflow/task.rb
|
|
50
|
-
- lib/oflow/test.rb
|
|
51
48
|
- lib/oflow/test/action.rb
|
|
52
49
|
- lib/oflow/test/actorwrap.rb
|
|
50
|
+
- lib/oflow/test.rb
|
|
53
51
|
- lib/oflow/tracker.rb
|
|
54
52
|
- lib/oflow/version.rb
|
|
53
|
+
- lib/oflow.rb
|
|
55
54
|
- test/actors/bad.rb
|
|
56
55
|
- test/actors/balancer_test.rb
|
|
57
56
|
- test/actors/doubler.rb
|
|
@@ -78,31 +77,33 @@ files:
|
|
|
78
77
|
- test/stutter.rb
|
|
79
78
|
- test/task_test.rb
|
|
80
79
|
- test/tracker_test.rb
|
|
80
|
+
- LICENSE
|
|
81
|
+
- README.md
|
|
81
82
|
homepage: http://www.ohler.com/oflow
|
|
82
83
|
licenses:
|
|
83
84
|
- MIT
|
|
84
|
-
metadata: {}
|
|
85
85
|
post_install_message:
|
|
86
86
|
rdoc_options:
|
|
87
|
-
-
|
|
87
|
+
- --main
|
|
88
88
|
- README.md
|
|
89
89
|
require_paths:
|
|
90
90
|
- lib
|
|
91
91
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
92
|
+
none: false
|
|
92
93
|
requirements:
|
|
93
|
-
- -
|
|
94
|
+
- - ! '>='
|
|
94
95
|
- !ruby/object:Gem::Version
|
|
95
96
|
version: '0'
|
|
96
97
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
98
|
+
none: false
|
|
97
99
|
requirements:
|
|
98
|
-
- -
|
|
100
|
+
- - ! '>='
|
|
99
101
|
- !ruby/object:Gem::Version
|
|
100
102
|
version: '0'
|
|
101
103
|
requirements: []
|
|
102
104
|
rubyforge_project: oflow
|
|
103
|
-
rubygems_version:
|
|
105
|
+
rubygems_version: 1.8.23.2
|
|
104
106
|
signing_key:
|
|
105
|
-
specification_version:
|
|
107
|
+
specification_version: 3
|
|
106
108
|
summary: Operations Workflow in Ruby
|
|
107
109
|
test_files: []
|
|
108
|
-
has_rdoc: true
|
checksums.yaml
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
SHA1:
|
|
3
|
-
metadata.gz: 04a87a3113ae8267766287e777820b585e3dbab4
|
|
4
|
-
data.tar.gz: 089d1332b1e3dbe1028834c02d3021e9386b99be
|
|
5
|
-
SHA512:
|
|
6
|
-
metadata.gz: f454da9d58703e4bbcffb6ead676ebc374e95eb1ebe93e9b407ca0b15a135958974114450de4d63369520001e0004d68b74237510e0064eabb0ae7ff9daf831d
|
|
7
|
-
data.tar.gz: 52f7450b9edc06c6f275bd1a3510080220de6904a787cb0ee5b30a0220697e622571bf47b2d2b7b06c3a3657cd8a5e81bd3f648a6978b099577cf4a9045ef151
|