ifuture 0.3.0 → 0.3.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.
- checksums.yaml +4 -4
- data/.travis.yml +2 -1
- data/README.md +2 -2
- data/ifuture.gemspec +2 -2
- data/lib/ifuture/version.rb +1 -1
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d42076176605fd275f85639f039ef50b4ac1fd5c
|
|
4
|
+
data.tar.gz: 12ba8c48e79162d8be369a777bb95e98afe1dcef
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fe11b76d32a22acf2a53d68fa19ba26f6ffe333fd635c3484fd403cde06b56a14f78be19cacae1c546d5e35763ea2203f8501584a6cfc787434ec00b6773943d
|
|
7
|
+
data.tar.gz: 97650d5297c73ea733be9faf18ec4e3b349cd68611ad8b8472d532043caf6cce3239c54cba767c8058db4d6039b74c1a4c7f56d9d7dc67ac119fc8a866fc2e64
|
data/.travis.yml
CHANGED
data/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# iFuture
|
|
2
|
-
[](http://travis-ci.org/havenwood/ifuture)
|
|
3
3
|
[](https://codeclimate.com/github/Havenwood/ifuture)
|
|
4
4
|
|
|
5
5
|
A Futures gem for Ruby implemented with [IChannel](https://github.com/robgleeson/ichannel) for interprocess communication over a unix socket or Redis. Run some code in another process and get the result back later!
|
|
@@ -10,7 +10,7 @@ The Future starts running right away, but isn't blocking because it runs in its
|
|
|
10
10
|
|
|
11
11
|
`gem install ifuture`
|
|
12
12
|
|
|
13
|
-
The Redis gem is required as well if you opt to use Redis instead of the default
|
|
13
|
+
The Redis gem is required as well if you opt to use Redis instead of the default Unix socket transporter.
|
|
14
14
|
|
|
15
15
|
`gem install redis`
|
|
16
16
|
|
data/ifuture.gemspec
CHANGED
|
@@ -8,8 +8,8 @@ Gem::Specification.new do |gem|
|
|
|
8
8
|
gem.version = IFuture::VERSION
|
|
9
9
|
gem.authors = ['Shannon Skipper']
|
|
10
10
|
gem.email = ['shannonskipper@gmail.com']
|
|
11
|
-
gem.description = %q{
|
|
12
|
-
gem.summary = %q{Futures
|
|
11
|
+
gem.description = %q{Futures over interprocess communication.}
|
|
12
|
+
gem.summary = %q{A Futures gem for Ruby implemented with IChannel for interprocess communication over a Unix socket or via Redis. Run some code in another process and get the result back later!}
|
|
13
13
|
gem.homepage = 'https://github.com/havenwood#readme'
|
|
14
14
|
gem.license = 'MIT'
|
|
15
15
|
gem.files = `git ls-files`.split($/)
|
data/lib/ifuture/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ifuture
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Shannon Skipper
|
|
@@ -66,7 +66,7 @@ dependencies:
|
|
|
66
66
|
- - ~>
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
68
|
version: 8.0.0
|
|
69
|
-
description:
|
|
69
|
+
description: Futures over interprocess communication.
|
|
70
70
|
email:
|
|
71
71
|
- shannonskipper@gmail.com
|
|
72
72
|
executables: []
|
|
@@ -107,6 +107,8 @@ rubyforge_project:
|
|
|
107
107
|
rubygems_version: 2.0.7
|
|
108
108
|
signing_key:
|
|
109
109
|
specification_version: 4
|
|
110
|
-
summary: Futures
|
|
110
|
+
summary: A Futures gem for Ruby implemented with IChannel for interprocess communication
|
|
111
|
+
over a Unix socket or via Redis. Run some code in another process and get the result
|
|
112
|
+
back later!
|
|
111
113
|
test_files: []
|
|
112
114
|
has_rdoc:
|