iprocess 3.0.0 → 3.0.1

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/.travis.yml CHANGED
@@ -5,6 +5,5 @@ rvm:
5
5
  - ruby-head
6
6
 
7
7
  notifications:
8
- irc: "irc.freenode.org#flowof.info"
9
- recipients:
10
- - rob@flowof.info
8
+ irc: "irc.freenode.org#ruby-bridge"
9
+ email: false
data/.yardopts CHANGED
@@ -5,4 +5,3 @@
5
5
  -
6
6
  LICENSE.txt
7
7
  ChangeLog
8
-
data/README.md CHANGED
@@ -10,8 +10,12 @@ __OVERVIEW__
10
10
 
11
11
  __DESCRIPTION__
12
12
 
13
- Transport Ruby objects between processes on UNIX-like operating systems.
14
-
13
+ The purpose of IProcess is to allow you, the developer, run units of work
14
+ in parallel to each other. If you were to get down to implementation details
15
+ you'd see I'm using Kernel#fork to spawn subproccesses that dispatch a unit of
16
+ work. As a bonus the parent process can collect the return value of each unit
17
+ of work as long as it is serializable (i.e: Marshal can dump & load it).
18
+
15
19
  __EXAMPLES__
16
20
 
17
21
  The first two examples(one & two) are using the synchronous APIs, a little below
data/iprocess.gemspec CHANGED
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
20
20
  s.required_ruby_version = '~> 1.9.1'
21
21
 
22
22
  s.add_development_dependency 'yard' , '~> 0.7'
23
- s.add_development_dependency 'redcarpet', '~> 1.17'
23
+ s.add_development_dependency 'kramdown'
24
24
  s.add_development_dependency 'minitest' , '~> 2.6'
25
25
  s.add_development_dependency 'rake' , '~> 0.9.2'
26
26
  end
@@ -1,3 +1,3 @@
1
1
  class IProcess
2
- VERSION = '3.0.0'
2
+ VERSION = '3.0.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: iprocess
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.0.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-09-05 00:00:00.000000000 Z
12
+ date: 2012-09-26 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: yard
@@ -28,21 +28,21 @@ dependencies:
28
28
  - !ruby/object:Gem::Version
29
29
  version: '0.7'
30
30
  - !ruby/object:Gem::Dependency
31
- name: redcarpet
31
+ name: kramdown
32
32
  requirement: !ruby/object:Gem::Requirement
33
33
  none: false
34
34
  requirements:
35
- - - ~>
35
+ - - ! '>='
36
36
  - !ruby/object:Gem::Version
37
- version: '1.17'
37
+ version: '0'
38
38
  type: :development
39
39
  prerelease: false
40
40
  version_requirements: !ruby/object:Gem::Requirement
41
41
  none: false
42
42
  requirements:
43
- - - ~>
43
+ - - ! '>='
44
44
  - !ruby/object:Gem::Version
45
- version: '1.17'
45
+ version: '0'
46
46
  - !ruby/object:Gem::Dependency
47
47
  name: minitest
48
48
  requirement: !ruby/object:Gem::Requirement