sys-proctable 0.9.2-universal-mingw32 → 0.9.3-universal-mingw32
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/CHANGES +315 -310
- data/README +112 -112
- data/Rakefile +185 -174
- data/lib/windows/sys/proctable.rb +1 -1
- data/sys-proctable.gemspec +1 -1
- data/test/test_sys_proctable_all.rb +84 -84
- metadata +2 -2
data/README
CHANGED
@@ -1,112 +1,112 @@
|
|
1
|
-
== Description
|
2
|
-
A Ruby interface for gathering process information.
|
3
|
-
|
4
|
-
== Prerequisites
|
5
|
-
* Test::Unit 2.x (development only)
|
6
|
-
|
7
|
-
== Supported Platforms
|
8
|
-
* Windows 2000 or later
|
9
|
-
* Linux 2.6+
|
10
|
-
* BSD (various flavors)
|
11
|
-
* Solaris 8+
|
12
|
-
* HP-UX 10+
|
13
|
-
* OS X 10.4+
|
14
|
-
|
15
|
-
== Installation
|
16
|
-
gem install sys-proctable
|
17
|
-
|
18
|
-
You may need to specify a platform in some cases. For example:
|
19
|
-
|
20
|
-
gem install sys-proctable --platform mswin32 # Windows
|
21
|
-
gem install sys-proctable --platform sunos # Solaris
|
22
|
-
gem install sys-proctable --platform linux # Linux
|
23
|
-
gem install sys-proctable --platform freebsd # BSD (any flavor)
|
24
|
-
|
25
|
-
== Synopsis
|
26
|
-
require 'sys/proctable'
|
27
|
-
include Sys
|
28
|
-
|
29
|
-
# Everything
|
30
|
-
ProcTable.ps{ |p|
|
31
|
-
puts p.pid.to_s
|
32
|
-
puts p.comm
|
33
|
-
# ...
|
34
|
-
}
|
35
|
-
|
36
|
-
# Just one process
|
37
|
-
s = ProcTable.ps(2123)
|
38
|
-
puts s.pid.to_s
|
39
|
-
puts s.comm
|
40
|
-
# ...
|
41
|
-
|
42
|
-
# Return the results as an array of ProcTableStructs
|
43
|
-
a = ProcTable.ps
|
44
|
-
a.each do |p|
|
45
|
-
puts a.pid
|
46
|
-
# ...
|
47
|
-
end
|
48
|
-
|
49
|
-
== Notes
|
50
|
-
Windows users may pass a host name as a second argument to get process
|
51
|
-
information from a different host. This relies on the WMI service running.
|
52
|
-
|
53
|
-
== Known Issues
|
54
|
-
=== BSD
|
55
|
-
A kvm interface is used. That means the owner of the process using the
|
56
|
-
sys-proctable library needs to be a member of the kvm group (or root).
|
57
|
-
|
58
|
-
=== Solaris
|
59
|
-
The cmdline member on Solaris is limited to 80 characters unless you (or
|
60
|
-
your program) own the process. This is a Solaris design flaw/feature.
|
61
|
-
|
62
|
-
=== Thread Safety
|
63
|
-
I am not currently using a thread-safe version of readdir() for versions
|
64
|
-
of this library that use C. I am not especially concerned about it either.
|
65
|
-
If you are trying to read information out of /proc from different threads
|
66
|
-
at the same time there is something seriously wrong with your code logic.
|
67
|
-
Using readdir_r() still won't solve all potential thread safety issues anyway.
|
68
|
-
|
69
|
-
== Future Plans
|
70
|
-
Research has indicated that the kvm approach is less favored than a sysctl
|
71
|
-
approach on BSD variants. I will try to add this interface in a future
|
72
|
-
release.
|
73
|
-
|
74
|
-
== Acknowledgements
|
75
|
-
This library is largely based on the Perl module Proc::ProcessTable by
|
76
|
-
Dan Urist. Many ideas, as well as large chunks of code, were taken
|
77
|
-
from his work. So, a big THANK YOU goes out to Dan Urist.
|
78
|
-
|
79
|
-
A big thanks also goes out to Mike Hall who was very helpful with ideas,
|
80
|
-
logic and testing.
|
81
|
-
|
82
|
-
Thanks also go to Sean Chittenden for providing an account on one of his
|
83
|
-
FreeBSD machines. This is how the FreeBSD support was (initially) added.
|
84
|
-
|
85
|
-
Thanks go to James Hranicky for providing a patch that grabs name, eid,
|
86
|
-
euid, gid and guid info in the Linux version, along with some general
|
87
|
-
debugging help.
|
88
|
-
|
89
|
-
Thanks go to David Felstead for the original OS X code. Thanks also go
|
90
|
-
to Matthias Zirnstein for adding cmdline support for OS X.
|
91
|
-
|
92
|
-
Finally I'd like to thank all the folks who have submitted bug reports
|
93
|
-
and/or patches.
|
94
|
-
|
95
|
-
== Help Wanted
|
96
|
-
I do not have access to all platforms. If your platform is not supported
|
97
|
-
then you will need to either submit a patch or give me a remote account
|
98
|
-
on a box with a compiler so that I can write the code.
|
99
|
-
|
100
|
-
== More documentation
|
101
|
-
See the documentation under the 'doc' directory for more information,
|
102
|
-
including platform specific notes and issues.
|
103
|
-
|
104
|
-
== License
|
105
|
-
Artistic 2.0
|
106
|
-
|
107
|
-
== Copyright
|
108
|
-
(C) 2003-2012 Daniel J. Berger
|
109
|
-
All Rights Reserved.
|
110
|
-
|
111
|
-
== Author
|
112
|
-
Daniel J. Berger
|
1
|
+
== Description
|
2
|
+
A Ruby interface for gathering process information.
|
3
|
+
|
4
|
+
== Prerequisites
|
5
|
+
* Test::Unit 2.x (development only)
|
6
|
+
|
7
|
+
== Supported Platforms
|
8
|
+
* Windows 2000 or later
|
9
|
+
* Linux 2.6+
|
10
|
+
* BSD (various flavors)
|
11
|
+
* Solaris 8+
|
12
|
+
* HP-UX 10+
|
13
|
+
* OS X 10.4+
|
14
|
+
|
15
|
+
== Installation
|
16
|
+
gem install sys-proctable
|
17
|
+
|
18
|
+
You may need to specify a platform in some cases. For example:
|
19
|
+
|
20
|
+
gem install sys-proctable --platform mswin32 # Windows
|
21
|
+
gem install sys-proctable --platform sunos # Solaris
|
22
|
+
gem install sys-proctable --platform linux # Linux
|
23
|
+
gem install sys-proctable --platform freebsd # BSD (any flavor)
|
24
|
+
|
25
|
+
== Synopsis
|
26
|
+
require 'sys/proctable'
|
27
|
+
include Sys
|
28
|
+
|
29
|
+
# Everything
|
30
|
+
ProcTable.ps{ |p|
|
31
|
+
puts p.pid.to_s
|
32
|
+
puts p.comm
|
33
|
+
# ...
|
34
|
+
}
|
35
|
+
|
36
|
+
# Just one process
|
37
|
+
s = ProcTable.ps(2123)
|
38
|
+
puts s.pid.to_s
|
39
|
+
puts s.comm
|
40
|
+
# ...
|
41
|
+
|
42
|
+
# Return the results as an array of ProcTableStructs
|
43
|
+
a = ProcTable.ps
|
44
|
+
a.each do |p|
|
45
|
+
puts a.pid
|
46
|
+
# ...
|
47
|
+
end
|
48
|
+
|
49
|
+
== Notes
|
50
|
+
Windows users may pass a host name as a second argument to get process
|
51
|
+
information from a different host. This relies on the WMI service running.
|
52
|
+
|
53
|
+
== Known Issues
|
54
|
+
=== BSD
|
55
|
+
A kvm interface is used. That means the owner of the process using the
|
56
|
+
sys-proctable library needs to be a member of the kvm group (or root).
|
57
|
+
|
58
|
+
=== Solaris
|
59
|
+
The cmdline member on Solaris is limited to 80 characters unless you (or
|
60
|
+
your program) own the process. This is a Solaris design flaw/feature.
|
61
|
+
|
62
|
+
=== Thread Safety
|
63
|
+
I am not currently using a thread-safe version of readdir() for versions
|
64
|
+
of this library that use C. I am not especially concerned about it either.
|
65
|
+
If you are trying to read information out of /proc from different threads
|
66
|
+
at the same time there is something seriously wrong with your code logic.
|
67
|
+
Using readdir_r() still won't solve all potential thread safety issues anyway.
|
68
|
+
|
69
|
+
== Future Plans
|
70
|
+
Research has indicated that the kvm approach is less favored than a sysctl
|
71
|
+
approach on BSD variants. I will try to add this interface in a future
|
72
|
+
release.
|
73
|
+
|
74
|
+
== Acknowledgements
|
75
|
+
This library is largely based on the Perl module Proc::ProcessTable by
|
76
|
+
Dan Urist. Many ideas, as well as large chunks of code, were taken
|
77
|
+
from his work. So, a big THANK YOU goes out to Dan Urist.
|
78
|
+
|
79
|
+
A big thanks also goes out to Mike Hall who was very helpful with ideas,
|
80
|
+
logic and testing.
|
81
|
+
|
82
|
+
Thanks also go to Sean Chittenden for providing an account on one of his
|
83
|
+
FreeBSD machines. This is how the FreeBSD support was (initially) added.
|
84
|
+
|
85
|
+
Thanks go to James Hranicky for providing a patch that grabs name, eid,
|
86
|
+
euid, gid and guid info in the Linux version, along with some general
|
87
|
+
debugging help.
|
88
|
+
|
89
|
+
Thanks go to David Felstead for the original OS X code. Thanks also go
|
90
|
+
to Matthias Zirnstein for adding cmdline support for OS X.
|
91
|
+
|
92
|
+
Finally I'd like to thank all the folks who have submitted bug reports
|
93
|
+
and/or patches.
|
94
|
+
|
95
|
+
== Help Wanted
|
96
|
+
I do not have access to all platforms. If your platform is not supported
|
97
|
+
then you will need to either submit a patch or give me a remote account
|
98
|
+
on a box with a compiler so that I can write the code.
|
99
|
+
|
100
|
+
== More documentation
|
101
|
+
See the documentation under the 'doc' directory for more information,
|
102
|
+
including platform specific notes and issues.
|
103
|
+
|
104
|
+
== License
|
105
|
+
Artistic 2.0
|
106
|
+
|
107
|
+
== Copyright
|
108
|
+
(C) 2003-2012 Daniel J. Berger
|
109
|
+
All Rights Reserved.
|
110
|
+
|
111
|
+
== Author
|
112
|
+
Daniel J. Berger
|
data/Rakefile
CHANGED
@@ -1,174 +1,185 @@
|
|
1
|
-
require 'rake'
|
2
|
-
require 'rake/clean'
|
3
|
-
require 'rake/testtask'
|
4
|
-
require 'rbconfig'
|
5
|
-
include RbConfig
|
6
|
-
|
7
|
-
CLEAN.include(
|
8
|
-
'**/*.core', # Core dump files
|
9
|
-
'**/*.gem', # Gem files
|
10
|
-
'**/*.rbc', # Rubinius
|
11
|
-
'.rbx', '**/*/.rbx', # Rubinius
|
12
|
-
'**/*.o', # C object file
|
13
|
-
'**/*.log', # Ruby extension build log
|
14
|
-
'**/Makefile', # C Makefile
|
15
|
-
'**/conftest.dSYM', # OS X build directory
|
16
|
-
"**/*.#{CONFIG['DLEXT']}" # C shared object
|
17
|
-
)
|
18
|
-
|
19
|
-
desc 'Build the sys-proctable library for C versions of sys-proctable'
|
20
|
-
task :build => [:clean] do
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
t.libs << '
|
108
|
-
|
109
|
-
|
110
|
-
t.libs << '
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
spec.
|
138
|
-
|
139
|
-
spec.
|
140
|
-
spec.
|
141
|
-
spec.
|
142
|
-
spec.
|
143
|
-
|
144
|
-
|
145
|
-
spec.
|
146
|
-
spec.
|
147
|
-
spec.
|
148
|
-
spec.
|
149
|
-
when /
|
150
|
-
spec.platform = Gem::Platform.new(['universal', '
|
151
|
-
spec.
|
152
|
-
spec.
|
153
|
-
spec.test_files << 'test/
|
154
|
-
|
155
|
-
|
156
|
-
spec.
|
157
|
-
spec.
|
158
|
-
spec.
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
1
|
+
require 'rake'
|
2
|
+
require 'rake/clean'
|
3
|
+
require 'rake/testtask'
|
4
|
+
require 'rbconfig'
|
5
|
+
include RbConfig
|
6
|
+
|
7
|
+
CLEAN.include(
|
8
|
+
'**/*.core', # Core dump files
|
9
|
+
'**/*.gem', # Gem files
|
10
|
+
'**/*.rbc', # Rubinius
|
11
|
+
'.rbx', '**/*/.rbx', # Rubinius
|
12
|
+
'**/*.o', # C object file
|
13
|
+
'**/*.log', # Ruby extension build log
|
14
|
+
'**/Makefile', # C Makefile
|
15
|
+
'**/conftest.dSYM', # OS X build directory
|
16
|
+
"**/*.#{CONFIG['DLEXT']}" # C shared object
|
17
|
+
)
|
18
|
+
|
19
|
+
desc 'Build the sys-proctable library for C versions of sys-proctable'
|
20
|
+
task :build => [:clean] do
|
21
|
+
if RUBY_PLATFORM == 'java'
|
22
|
+
if ENV['JRUBY_OPTS']
|
23
|
+
ENV['JRUBY_OPTS'] += ' -Xcext.enabled=true'
|
24
|
+
else
|
25
|
+
ENV['JRUBY_OPTS'] = '-Xcext.enabled=true'
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
case CONFIG['host_os']
|
30
|
+
when /bsd/i
|
31
|
+
dir = 'ext/bsd'
|
32
|
+
ext = '.so'
|
33
|
+
when /darwin/i
|
34
|
+
dir = 'ext/darwin'
|
35
|
+
ext = '.bundle'
|
36
|
+
when /hpux/i
|
37
|
+
dir = 'ext/hpux'
|
38
|
+
ext = '.sl'
|
39
|
+
end
|
40
|
+
|
41
|
+
unless CONFIG['host_os'] =~ /win32|mswin|dos|cygwin|mingw|windows|linux|sunos|solaris/i
|
42
|
+
Dir.chdir(dir) do
|
43
|
+
ruby 'extconf.rb'
|
44
|
+
sh 'make'
|
45
|
+
cp 'proctable' + ext, 'sys'
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
desc 'Install the sys-proctable library'
|
51
|
+
task :install => [:build] do
|
52
|
+
file = nil
|
53
|
+
dir = File.join(CONFIG['sitelibdir'], 'sys')
|
54
|
+
|
55
|
+
Dir.mkdir(dir) unless File.exists?(dir)
|
56
|
+
|
57
|
+
case CONFIG['host_os']
|
58
|
+
when /mswin|win32|msdos|cygwin|mingw|windows/i
|
59
|
+
file = 'lib/windows/sys/proctable.rb'
|
60
|
+
when /linux/i
|
61
|
+
file = 'lib/linux/sys/proctable.rb'
|
62
|
+
when /sunos|solaris/i
|
63
|
+
file = 'lib/sunos/sys/proctable.rb'
|
64
|
+
when /bsd/i
|
65
|
+
Dir.chdir('ext/bsd'){ sh 'make install' }
|
66
|
+
when /darwin/i
|
67
|
+
Dir.chdir('ext/darwin'){ sh 'make install' }
|
68
|
+
when /hpux/i
|
69
|
+
Dir.chdir('ext/hpux'){ sh 'make install' }
|
70
|
+
end
|
71
|
+
|
72
|
+
cp(file, dir, :verbose => true) if file
|
73
|
+
end
|
74
|
+
|
75
|
+
desc 'Uninstall the sys-proctable library'
|
76
|
+
task :uninstall do
|
77
|
+
case CONFIG['host_os']
|
78
|
+
when /win32|mswin|dos|cygwin|mingw|windows|linux|sunos|solaris/i
|
79
|
+
dir = File.join(CONFIG['sitelibdir'], 'sys')
|
80
|
+
file = File.join(dir, 'proctable.rb')
|
81
|
+
else
|
82
|
+
dir = File.join(CONFIG['sitearchdir'], 'sys')
|
83
|
+
file = File.join(dir, 'proctable.' + CONFIG['DLEXT'])
|
84
|
+
end
|
85
|
+
|
86
|
+
rm(file)
|
87
|
+
end
|
88
|
+
|
89
|
+
desc 'Run the benchmark suite'
|
90
|
+
task :bench => [:build] do
|
91
|
+
sh "ruby -Ilib benchmarks/bench_ps.rb"
|
92
|
+
end
|
93
|
+
|
94
|
+
desc 'Run the example program'
|
95
|
+
task :example => [:build] do
|
96
|
+
sh 'ruby -Ilib -Iext examples/example_ps.rb'
|
97
|
+
end
|
98
|
+
|
99
|
+
desc 'Run the test suite'
|
100
|
+
Rake::TestTask.new do |t|
|
101
|
+
task :test => :build
|
102
|
+
t.libs << 'test' << '.'
|
103
|
+
|
104
|
+
case CONFIG['host_os']
|
105
|
+
when /mswin|msdos|cygwin|mingw|windows/i
|
106
|
+
t.test_files = FileList['test/test_sys_proctable_windows.rb']
|
107
|
+
t.libs << 'lib/windows'
|
108
|
+
when /linux/i
|
109
|
+
t.test_files = FileList['test/test_sys_proctable_linux.rb']
|
110
|
+
t.libs << 'lib/linux'
|
111
|
+
when /sunos|solaris/i
|
112
|
+
t.test_files = FileList['test/test_sys_proctable_sunos.rb']
|
113
|
+
t.libs << 'lib/sunos'
|
114
|
+
when /darwin/i
|
115
|
+
t.libs << 'ext/darwin'
|
116
|
+
t.test_files = FileList['test/test_sys_proctable_darwin.rb']
|
117
|
+
when /bsd/i
|
118
|
+
t.libs << 'ext/bsd'
|
119
|
+
t.test_files = FileList['test/test_sys_proctable_bsd.rb']
|
120
|
+
when /hpux/i
|
121
|
+
t.libs << 'ext/hpux'
|
122
|
+
t.test_files = FileList['test/test_sys_proctable_hpux.rb']
|
123
|
+
end
|
124
|
+
end
|
125
|
+
|
126
|
+
namespace :gem do
|
127
|
+
desc 'Create a gem'
|
128
|
+
task :create => [:clean] do
|
129
|
+
spec = eval(IO.read('sys-proctable.gemspec'))
|
130
|
+
|
131
|
+
# I've had to manually futz with the spec here in some cases
|
132
|
+
# in order to get the universal platform settings I want because
|
133
|
+
# of some bugginess in Rubygems' platform.rb.
|
134
|
+
#
|
135
|
+
case CONFIG['host_os']
|
136
|
+
when /bsd/i
|
137
|
+
spec.platform = Gem::Platform.new(['universal', 'freebsd'])
|
138
|
+
spec.platform.version = nil
|
139
|
+
spec.files << 'ext/bsd/sys/proctable.c'
|
140
|
+
spec.extra_rdoc_files << 'ext/bsd/sys/proctable.c'
|
141
|
+
spec.test_files << 'test/test_sys_proctable_bsd.rb'
|
142
|
+
spec.extensions = ['ext/bsd/extconf.rb']
|
143
|
+
when /darwin/i
|
144
|
+
spec.platform = Gem::Platform.new(['universal', 'darwin'])
|
145
|
+
spec.files << 'ext/darwin/sys/proctable.c'
|
146
|
+
spec.extra_rdoc_files << 'ext/darwin/sys/proctable.c'
|
147
|
+
spec.test_files << 'test/test_sys_proctable_darwin.rb'
|
148
|
+
spec.extensions = ['ext/darwin/extconf.rb']
|
149
|
+
when /hpux/i
|
150
|
+
spec.platform = Gem::Platform.new(['universal', 'hpux'])
|
151
|
+
spec.files << 'ext/hpux/sys/proctable.c'
|
152
|
+
spec.extra_rdoc_files << 'ext/hpux/sys/proctable.c'
|
153
|
+
spec.test_files << 'test/test_sys_proctable_hpux.rb'
|
154
|
+
spec.extensions = ['ext/hpux/extconf.rb']
|
155
|
+
when /linux/i
|
156
|
+
spec.platform = Gem::Platform.new(['universal', 'linux'])
|
157
|
+
spec.require_paths = ['lib', 'lib/linux']
|
158
|
+
spec.files += ['lib/linux/sys/proctable.rb']
|
159
|
+
spec.test_files << 'test/test_sys_proctable_linux.rb'
|
160
|
+
when /sunos|solaris/i
|
161
|
+
spec.platform = Gem::Platform.new(['universal', 'solaris'])
|
162
|
+
spec.require_paths = ['lib', 'lib/sunos']
|
163
|
+
spec.files += ['lib/sunos/sys/proctable.rb']
|
164
|
+
spec.test_files << 'test/test_sys_proctable_sunos.rb'
|
165
|
+
when /mswin|win32|dos|cygwin|mingw|windows/i
|
166
|
+
spec.platform = Gem::Platform.new(['universal', 'mingw32'])
|
167
|
+
spec.require_paths = ['lib', 'lib/windows']
|
168
|
+
spec.files += ['lib/windows/sys/proctable.rb']
|
169
|
+
spec.test_files << 'test/test_sys_proctable_windows.rb'
|
170
|
+
end
|
171
|
+
|
172
|
+
# https://github.com/rubygems/rubygems/issues/147
|
173
|
+
spec.original_platform = spec.platform
|
174
|
+
|
175
|
+
Gem::Builder.new(spec).build
|
176
|
+
end
|
177
|
+
|
178
|
+
desc 'Install the sys-proctable library as a gem'
|
179
|
+
task :install => [:create] do
|
180
|
+
gem_name = Dir['*.gem'].first
|
181
|
+
sh "gem install #{gem_name}"
|
182
|
+
end
|
183
|
+
end
|
184
|
+
|
185
|
+
task :default => :test
|