systemu 2.3.0 → 2.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.
- data/README +4 -4
- data/lib/systemu.rb +2 -4
- data/systemu.gemspec +1 -1
- metadata +3 -16
data/README
CHANGED
@@ -53,7 +53,7 @@ SAMPLES
|
|
53
53
|
|
54
54
|
~ > ruby samples/a.rb
|
55
55
|
|
56
|
-
[#<Process::Status: pid
|
56
|
+
[#<Process::Status: pid 16667 exit 0>, "2011-09-13 20:50:37 -0600\n", "2011-09-13 20:50:37 -0600\n"]
|
57
57
|
|
58
58
|
|
59
59
|
<========< samples/b.rb >========>
|
@@ -75,7 +75,7 @@ SAMPLES
|
|
75
75
|
|
76
76
|
~ > ruby samples/b.rb
|
77
77
|
|
78
|
-
[#<Process::Status: pid
|
78
|
+
[#<Process::Status: pid 16672 exit 0>, "2011-09-13 20:50:37 -0600\n", "2011-09-13 20:50:37 -0600\n"]
|
79
79
|
|
80
80
|
|
81
81
|
<========< samples/c.rb >========>
|
@@ -163,7 +163,7 @@ SAMPLES
|
|
163
163
|
|
164
164
|
~ > ruby samples/f.rb
|
165
165
|
|
166
|
-
#<Process::Status: pid
|
167
|
-
"
|
166
|
+
#<Process::Status: pid 16692 SIGKILL (signal 9)>
|
167
|
+
"1315968638\n1315968639\n1315968640\n"
|
168
168
|
|
169
169
|
|
data/lib/systemu.rb
CHANGED
@@ -13,7 +13,7 @@ class SystemUniversal
|
|
13
13
|
#
|
14
14
|
# constants
|
15
15
|
#
|
16
|
-
SystemUniversal::VERSION = '2.3.
|
16
|
+
SystemUniversal::VERSION = '2.3.1' unless SystemUniversal.send(:const_defined?, :VERSION)
|
17
17
|
def SystemUniversal.version() SystemUniversal::VERSION end
|
18
18
|
def version() SystemUniversal::VERSION end
|
19
19
|
#
|
@@ -25,7 +25,7 @@ class SystemUniversal
|
|
25
25
|
@pid = Process.pid
|
26
26
|
@turd = ENV['SYSTEMU_TURD']
|
27
27
|
|
28
|
-
c = ::Config::CONFIG
|
28
|
+
c = begin; ::RbConfig::CONFIG; rescue NameError; ::Config::CONFIG; end
|
29
29
|
ruby = File.join(c['bindir'], c['ruby_install_name']) << c['EXEEXT']
|
30
30
|
@ruby = if system('%s -e 42' % ruby)
|
31
31
|
ruby
|
@@ -173,8 +173,6 @@ class SystemUniversal
|
|
173
173
|
<<-program
|
174
174
|
PIPE = STDOUT.dup
|
175
175
|
begin
|
176
|
-
require 'yaml'
|
177
|
-
|
178
176
|
config = Marshal.load(IO.read('#{ config }'))
|
179
177
|
|
180
178
|
argv = config['argv']
|
data/systemu.gemspec
CHANGED
metadata
CHANGED
@@ -1,13 +1,8 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: systemu
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash: 3
|
5
4
|
prerelease:
|
6
|
-
|
7
|
-
- 2
|
8
|
-
- 3
|
9
|
-
- 0
|
10
|
-
version: 2.3.0
|
5
|
+
version: 2.3.1
|
11
6
|
platform: ruby
|
12
7
|
authors:
|
13
8
|
- Ara T. Howard
|
@@ -15,8 +10,7 @@ autorequire:
|
|
15
10
|
bindir: bin
|
16
11
|
cert_chain: []
|
17
12
|
|
18
|
-
date: 2011-
|
19
|
-
default_executable:
|
13
|
+
date: 2011-09-14 00:00:00 Z
|
20
14
|
dependencies: []
|
21
15
|
|
22
16
|
description: "description: systemu kicks the ass"
|
@@ -40,7 +34,6 @@ files:
|
|
40
34
|
- samples/e.rb
|
41
35
|
- samples/f.rb
|
42
36
|
- systemu.gemspec
|
43
|
-
has_rdoc: true
|
44
37
|
homepage: https://github.com/ahoward/systemu
|
45
38
|
licenses: []
|
46
39
|
|
@@ -54,23 +47,17 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
54
47
|
requirements:
|
55
48
|
- - ">="
|
56
49
|
- !ruby/object:Gem::Version
|
57
|
-
hash: 3
|
58
|
-
segments:
|
59
|
-
- 0
|
60
50
|
version: "0"
|
61
51
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
62
52
|
none: false
|
63
53
|
requirements:
|
64
54
|
- - ">="
|
65
55
|
- !ruby/object:Gem::Version
|
66
|
-
hash: 3
|
67
|
-
segments:
|
68
|
-
- 0
|
69
56
|
version: "0"
|
70
57
|
requirements: []
|
71
58
|
|
72
59
|
rubyforge_project: codeforpeople
|
73
|
-
rubygems_version: 1.
|
60
|
+
rubygems_version: 1.8.10
|
74
61
|
signing_key:
|
75
62
|
specification_version: 3
|
76
63
|
summary: systemu
|