adjust ruby load path

This commit is contained in:
Doug MacEachern 2010-05-20 15:56:42 -07:00
parent 282c008aea
commit 98470f551f
1 changed files with 2 additions and 1 deletions

View File

@ -68,6 +68,7 @@ end
Rake::TestTask.new do |t| Rake::TestTask.new do |t|
t.pattern = 'test/*_test.rb' t.pattern = 'test/*_test.rb'
t.libs << "."
end end
task :test => [:build] do task :test => [:build] do
@ -90,7 +91,7 @@ desc 'Run sigar examples (test)'
task :examples => [:build] do task :examples => [:build] do
in_ext() in_ext()
Dir["examples/*.rb"].each do |file| Dir["examples/*.rb"].each do |file|
cmd = "ruby #{file}" cmd = "ruby -I. #{file}"
print cmd + "\n" print cmd + "\n"
system(cmd) system(cmd)
end end