stepladder 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -1,3 +1,4 @@
1
1
  ./spikes/*
2
2
  .rvmrc
3
3
  Gemfile.lock
4
+ pkg
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
@@ -0,0 +1,3 @@
1
+ require 'bundler'
2
+
3
+ Bundler::GemHelper.install_tasks
@@ -0,0 +1,3 @@
1
+ module Stepladder
2
+ VERSION = "0.0.2"
3
+ end
@@ -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.1
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