stepladder 0.0.1 → 0.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/.gitignore +1 -0
- data/README.md +0 -4
- data/Rakefile +3 -0
- data/lib/stepladder/version.rb +3 -0
- data/stepladder.gemspec +25 -0
- metadata +11 -3
data/.gitignore
CHANGED
data/README.md
CHANGED
@@ -223,7 +223,3 @@ joke frameworks very seriously. ;)
|
|
223
223
|
|
224
224
|
- add a nicer top-layer to the DSL --no reason we should have to do
|
225
225
|
all that `Worker.new` stuff
|
226
|
-
- make this into a gem
|
227
|
-
- add support for a collector worker which collects values from its
|
228
|
-
supplier, and then passes them downstream in batches (defined by
|
229
|
-
its task block, of course).
|
data/Rakefile
ADDED
data/stepladder.gemspec
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
$:.push File.expand_path("../lib", __FILE__)
|
2
|
+
require 'stepladder/version'
|
3
|
+
|
4
|
+
Gem::Specification.new do |s|
|
5
|
+
s.name = "stepladder"
|
6
|
+
s.version = Stepladder::VERSION
|
7
|
+
s.platform = Gem::Platform::RUBY
|
8
|
+
s.authors = ["Joel Helbling"]
|
9
|
+
s.email = ["joel@joelhelbling.com"]
|
10
|
+
s.homepage = "http://github.com/joelhelbling/stepladder"
|
11
|
+
s.summary = %q{ A ruby-fibers-based framework aimed at extremely low coupling. }
|
12
|
+
s.description = %q{ Stepladder grew out of experimentation with Ruby fibers, after readings Dave Thomas' demo of Ruby fibers, wherein he created a pipeline of fiber processes, emulating the style and syntax of the *nix command line. I noticed that, courtesy of fibers' extremely low surface area, fiber-to-fiber collaborators could operate with extremely low coupling. That was the original motivation for creating the framework. }
|
13
|
+
|
14
|
+
s.rubyforge_project = "stepladder"
|
15
|
+
s.files = `git ls-files`.split("\n")
|
16
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
17
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
18
|
+
s.require_paths = ["lib"]
|
19
|
+
|
20
|
+
s.add_development_dependency 'cucumber'
|
21
|
+
s.add_development_dependency 'rake'
|
22
|
+
s.add_development_dependency 'rspec'
|
23
|
+
s.add_development_dependency 'rspec-core'
|
24
|
+
s.add_development_dependency 'aruba'
|
25
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stepladder
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -91,7 +91,11 @@ dependencies:
|
|
91
91
|
- - ! '>='
|
92
92
|
- !ruby/object:Gem::Version
|
93
93
|
version: '0'
|
94
|
-
description: '
|
94
|
+
description: ! ' Stepladder grew out of experimentation with Ruby fibers, after readings
|
95
|
+
Dave Thomas'' demo of Ruby fibers, wherein he created a pipeline of fiber processes,
|
96
|
+
emulating the style and syntax of the *nix command line. I noticed that, courtesy
|
97
|
+
of fibers'' extremely low surface area, fiber-to-fiber collaborators could operate
|
98
|
+
with extremely low coupling. That was the original motivation for creating the framework. '
|
95
99
|
email:
|
96
100
|
- joel@joelhelbling.com
|
97
101
|
executables: []
|
@@ -101,9 +105,13 @@ files:
|
|
101
105
|
- .gitignore
|
102
106
|
- Gemfile
|
103
107
|
- README.md
|
108
|
+
- Rakefile
|
109
|
+
- lib/stepladder/version.rb
|
104
110
|
- lib/stepladder/worker.rb
|
111
|
+
- pkg/.gitkeep
|
105
112
|
- spec/lib/stepladder/worker_spec.rb
|
106
113
|
- spec/spec_helper.rb
|
114
|
+
- stepladder.gemspec
|
107
115
|
homepage: http://github.com/joelhelbling/stepladder
|
108
116
|
licenses: []
|
109
117
|
post_install_message:
|
@@ -127,7 +135,7 @@ rubyforge_project: stepladder
|
|
127
135
|
rubygems_version: 1.8.24
|
128
136
|
signing_key:
|
129
137
|
specification_version: 3
|
130
|
-
summary:
|
138
|
+
summary: A ruby-fibers-based framework aimed at extremely low coupling.
|
131
139
|
test_files:
|
132
140
|
- spec/lib/stepladder/worker_spec.rb
|
133
141
|
- spec/spec_helper.rb
|