childprocess 0.0.9 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.9
1
+ 0.1.0
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{childprocess}
8
- s.version = "0.0.9"
8
+ s.version = "0.1.0"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Jari Bakken"]
12
- s.date = %q{2010-10-16}
12
+ s.date = %q{2010-10-17}
13
13
  s.description = %q{This gem aims at being a simple and reliable solution for controlling external programs running in the background on any Ruby / OS combination.}
14
14
  s.email = %q{jari.bakken@gmail.com}
15
15
  s.extra_rdoc_files = [
@@ -48,7 +48,7 @@ Gem::Specification.new do |s|
48
48
  s.homepage = %q{http://github.com/jarib/childprocess}
49
49
  s.rdoc_options = ["--charset=UTF-8"]
50
50
  s.require_paths = ["lib"]
51
- s.rubygems_version = %q{1.3.7}
51
+ s.rubygems_version = %q{1.3.6}
52
52
  s.summary = %q{Cross-platform ruby library for managing child processes.}
53
53
  s.test_files = [
54
54
  "spec/childprocess_spec.rb",
@@ -60,7 +60,7 @@ Gem::Specification.new do |s|
60
60
  current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
61
61
  s.specification_version = 3
62
62
 
63
- if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
63
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
64
64
  s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
65
65
  s.add_development_dependency(%q<yard>, [">= 0"])
66
66
  s.add_runtime_dependency(%q<ffi>, ["~> 0.6.3"])
@@ -26,7 +26,7 @@ module ChildProcess
26
26
  private
27
27
 
28
28
  def launch_process
29
- backround_args! if @detach
29
+ # background_args! if @detach
30
30
 
31
31
  pb = java.lang.ProcessBuilder.new(@args)
32
32
 
metadata CHANGED
@@ -1,69 +1,62 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: childprocess
3
3
  version: !ruby/object:Gem::Version
4
- hash: 13
5
4
  prerelease: false
6
5
  segments:
7
- - 0
8
- - 0
9
- - 9
10
- version: 0.0.9
6
+ - 0
7
+ - 1
8
+ - 0
9
+ version: 0.1.0
11
10
  platform: ruby
12
11
  authors:
13
- - Jari Bakken
12
+ - Jari Bakken
14
13
  autorequire:
15
14
  bindir: bin
16
15
  cert_chain: []
17
16
 
18
- date: 2010-10-16 00:00:00 +02:00
17
+ date: 2010-10-17 00:00:00 +02:00
19
18
  default_executable:
20
19
  dependencies:
21
- - !ruby/object:Gem::Dependency
22
- name: rspec
23
- prerelease: false
24
- requirement: &id001 !ruby/object:Gem::Requirement
25
- none: false
26
- requirements:
27
- - - ">="
28
- - !ruby/object:Gem::Version
29
- hash: 13
30
- segments:
31
- - 1
32
- - 2
33
- - 9
34
- version: 1.2.9
35
- type: :development
36
- version_requirements: *id001
37
- - !ruby/object:Gem::Dependency
38
- name: yard
39
- prerelease: false
40
- requirement: &id002 !ruby/object:Gem::Requirement
41
- none: false
42
- requirements:
43
- - - ">="
44
- - !ruby/object:Gem::Version
45
- hash: 3
46
- segments:
47
- - 0
48
- version: "0"
49
- type: :development
50
- version_requirements: *id002
51
- - !ruby/object:Gem::Dependency
52
- name: ffi
53
- prerelease: false
54
- requirement: &id003 !ruby/object:Gem::Requirement
55
- none: false
56
- requirements:
57
- - - ~>
58
- - !ruby/object:Gem::Version
59
- hash: 1
60
- segments:
61
- - 0
62
- - 6
63
- - 3
64
- version: 0.6.3
65
- type: :runtime
66
- version_requirements: *id003
20
+ - !ruby/object:Gem::Dependency
21
+ name: rspec
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - ">="
26
+ - !ruby/object:Gem::Version
27
+ segments:
28
+ - 1
29
+ - 2
30
+ - 9
31
+ version: 1.2.9
32
+ type: :development
33
+ version_requirements: *id001
34
+ - !ruby/object:Gem::Dependency
35
+ name: yard
36
+ prerelease: false
37
+ requirement: &id002 !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ segments:
42
+ - 0
43
+ version: "0"
44
+ type: :development
45
+ version_requirements: *id002
46
+ - !ruby/object:Gem::Dependency
47
+ name: ffi
48
+ prerelease: false
49
+ requirement: &id003 !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ~>
52
+ - !ruby/object:Gem::Version
53
+ segments:
54
+ - 0
55
+ - 6
56
+ - 3
57
+ version: 0.6.3
58
+ type: :runtime
59
+ version_requirements: *id003
67
60
  description: This gem aims at being a simple and reliable solution for controlling external programs running in the background on any Ruby / OS combination.
68
61
  email: jari.bakken@gmail.com
69
62
  executables: []
@@ -71,71 +64,67 @@ executables: []
71
64
  extensions: []
72
65
 
73
66
  extra_rdoc_files:
74
- - LICENSE
75
- - README.rdoc
67
+ - LICENSE
68
+ - README.rdoc
76
69
  files:
77
- - .document
78
- - .gitignore
79
- - LICENSE
80
- - README.rdoc
81
- - Rakefile
82
- - VERSION
83
- - childprocess.gemspec
84
- - lib/childprocess.rb
85
- - lib/childprocess/abstract_process.rb
86
- - lib/childprocess/errors.rb
87
- - lib/childprocess/ironruby.rb
88
- - lib/childprocess/ironruby/process.rb
89
- - lib/childprocess/jruby.rb
90
- - lib/childprocess/jruby/process.rb
91
- - lib/childprocess/unix.rb
92
- - lib/childprocess/unix/process.rb
93
- - lib/childprocess/windows.rb
94
- - lib/childprocess/windows/api.rb
95
- - lib/childprocess/windows/constants.rb
96
- - lib/childprocess/windows/functions.rb
97
- - lib/childprocess/windows/handle.rb
98
- - lib/childprocess/windows/process.rb
99
- - lib/childprocess/windows/structs.rb
100
- - spec/childprocess_spec.rb
101
- - spec/spec.opts
102
- - spec/spec_helper.rb
103
- - spec/unix_process_spec.rb
70
+ - .document
71
+ - .gitignore
72
+ - LICENSE
73
+ - README.rdoc
74
+ - Rakefile
75
+ - VERSION
76
+ - childprocess.gemspec
77
+ - lib/childprocess.rb
78
+ - lib/childprocess/abstract_process.rb
79
+ - lib/childprocess/errors.rb
80
+ - lib/childprocess/ironruby.rb
81
+ - lib/childprocess/ironruby/process.rb
82
+ - lib/childprocess/jruby.rb
83
+ - lib/childprocess/jruby/process.rb
84
+ - lib/childprocess/unix.rb
85
+ - lib/childprocess/unix/process.rb
86
+ - lib/childprocess/windows.rb
87
+ - lib/childprocess/windows/api.rb
88
+ - lib/childprocess/windows/constants.rb
89
+ - lib/childprocess/windows/functions.rb
90
+ - lib/childprocess/windows/handle.rb
91
+ - lib/childprocess/windows/process.rb
92
+ - lib/childprocess/windows/structs.rb
93
+ - spec/childprocess_spec.rb
94
+ - spec/spec.opts
95
+ - spec/spec_helper.rb
96
+ - spec/unix_process_spec.rb
104
97
  has_rdoc: true
105
98
  homepage: http://github.com/jarib/childprocess
106
99
  licenses: []
107
100
 
108
101
  post_install_message:
109
102
  rdoc_options:
110
- - --charset=UTF-8
103
+ - --charset=UTF-8
111
104
  require_paths:
112
- - lib
105
+ - lib
113
106
  required_ruby_version: !ruby/object:Gem::Requirement
114
- none: false
115
107
  requirements:
116
- - - ">="
117
- - !ruby/object:Gem::Version
118
- hash: 3
119
- segments:
120
- - 0
121
- version: "0"
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ segments:
111
+ - 0
112
+ version: "0"
122
113
  required_rubygems_version: !ruby/object:Gem::Requirement
123
- none: false
124
114
  requirements:
125
- - - ">="
126
- - !ruby/object:Gem::Version
127
- hash: 3
128
- segments:
129
- - 0
130
- version: "0"
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ segments:
118
+ - 0
119
+ version: "0"
131
120
  requirements: []
132
121
 
133
122
  rubyforge_project:
134
- rubygems_version: 1.3.7
123
+ rubygems_version: 1.3.6
135
124
  signing_key:
136
125
  specification_version: 3
137
126
  summary: Cross-platform ruby library for managing child processes.
138
127
  test_files:
139
- - spec/childprocess_spec.rb
140
- - spec/spec_helper.rb
141
- - spec/unix_process_spec.rb
128
+ - spec/childprocess_spec.rb
129
+ - spec/spec_helper.rb
130
+ - spec/unix_process_spec.rb