spoon 0.0.5 → 0.0.6
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/spoon.gemspec +2 -2
- metadata +15 -13
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b84f2f34bd11829418a80b83d4f341c840acbf2a
|
4
|
+
data.tar.gz: c35b9b765b490209d4f528885846985a9d93c952
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f51e3c1c96d87c6ffea677b7e56a752305988d8ce4fd0f3d00f82e2a1fb5dc6ce7fe72ea07399de85efe34b98fe35b41acc6a8de76da568c9f845a1f37248d41
|
7
|
+
data.tar.gz: deb2f2915e37629376b0e78686fb015c9297c85f43b4df927a1c858ebe040c889d106c6978d268d7a20271bc2676ffae4eb4eaebcf40e388020ea3135f4f9f1a
|
data/spoon.gemspec
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = "spoon"
|
3
|
-
s.version = "0.0.
|
3
|
+
s.version = "0.0.6"
|
4
4
|
s.authors = ["Charles Oliver Nutter"]
|
5
|
-
s.date =
|
5
|
+
s.date = Time.now.strftime('%Y-%m-%d')
|
6
6
|
s.description = s.summary = "Spoon is an FFI binding of the posix_spawn function (and Windows equivalent), providing fork+exec functionality in a single shot."
|
7
7
|
s.files = `git ls-files`.lines.map(&:chomp)
|
8
8
|
s.require_paths = ["lib"]
|
metadata
CHANGED
@@ -1,31 +1,32 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: spoon
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Charles Oliver Nutter
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-09-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
+
name: ffi
|
14
15
|
requirement: !ruby/object:Gem::Requirement
|
15
16
|
requirements:
|
16
17
|
- - ">="
|
17
18
|
- !ruby/object:Gem::Version
|
18
19
|
version: '0'
|
19
|
-
name: ffi
|
20
|
-
prerelease: false
|
21
20
|
type: :runtime
|
21
|
+
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '0'
|
27
|
-
description: Spoon is an FFI binding of the posix_spawn function (and Windows equivalent),
|
28
|
-
|
27
|
+
description: Spoon is an FFI binding of the posix_spawn function (and Windows equivalent),
|
28
|
+
providing fork+exec functionality in a single shot.
|
29
|
+
email:
|
29
30
|
executables: []
|
30
31
|
extensions: []
|
31
32
|
extra_rdoc_files: []
|
@@ -37,11 +38,11 @@ files:
|
|
37
38
|
- lib/spoon/unix.rb
|
38
39
|
- lib/spoon/windows.rb
|
39
40
|
- spoon.gemspec
|
40
|
-
homepage:
|
41
|
+
homepage:
|
41
42
|
licenses:
|
42
43
|
- Apache-2.0
|
43
44
|
metadata: {}
|
44
|
-
post_install_message:
|
45
|
+
post_install_message:
|
45
46
|
rdoc_options: []
|
46
47
|
require_paths:
|
47
48
|
- lib
|
@@ -56,9 +57,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
56
57
|
- !ruby/object:Gem::Version
|
57
58
|
version: '0'
|
58
59
|
requirements: []
|
59
|
-
rubyforge_project:
|
60
|
-
rubygems_version: 2.6.
|
61
|
-
signing_key:
|
60
|
+
rubyforge_project:
|
61
|
+
rubygems_version: 2.6.4
|
62
|
+
signing_key:
|
62
63
|
specification_version: 4
|
63
|
-
summary: Spoon is an FFI binding of the posix_spawn function (and Windows equivalent),
|
64
|
+
summary: Spoon is an FFI binding of the posix_spawn function (and Windows equivalent),
|
65
|
+
providing fork+exec functionality in a single shot.
|
64
66
|
test_files: []
|