Skip to content

Commit

Permalink
Fix a typo in a puts statement.
Browse files Browse the repository at this point in the history
  • Loading branch information
talkhouse committed Feb 2, 2010
1 parent 6d2e7e6 commit a0a4429
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions Rakefile
Expand Up @@ -48,18 +48,21 @@ end
namespace :test do
desc 'Test ruby implementation under jruby'
task :jruby do
puts "Testing JRuby implementation."
sh "jruby -Ilib:lib/common:test:lib/ruby_impl test/ts_all.rb"
end
desc 'Test java implementation'
task :java => :jar do
puts "Testing Java implementation."
include_path = '-Ilib:lib/common:test:lib/java_impl:ship'
sh "jruby #{include_path} -rjava -rjavaimpl.jar test/ts_all.rb"
end
desc 'Test ruby implementation under default ruby'
task :ruby do
puts "Testing Ruby implementation."
sh "ruby -Ilib:lib/common:test:lib/ruby_impl test/ts_all.rb"
end
desc 'Quick test of the Ruby implemenation.'
desc 'Quick test of the Ruby implementation.'
task :quick do
sh "ruby -Ilib:lib/common:test:lib/ruby_impl test/ts_fast.rb"
end
Expand Down Expand Up @@ -94,22 +97,22 @@ module BenchTask
namespace :bench do
desc "Benchmark ruby implementation using ruby."
task :ruby do
puts "Benchmarking Ruby implemenation."
puts "Benchmarking Ruby implementation."
SRC.each do |src|
sh "ruby -Ilib:lib/common:lib/ruby_impl #{src}"
end
end
desc "Benchmark ruby implementation using jruby."
task :jruby do
puts "Benchmarking JRuby implemenation."
puts "Benchmarking JRuby implementation."
SRC.each do |src|
sh "jruby -Ilib:lib/common:lib/ruby_impl #{src}"
end
end
desc "Benchmark Java implementation."
task :java do
SRC.each do |src|
puts "Benchmarking java implemenation."
puts "Benchmarking java implementation."
sh "jruby -Ilib:lib/common:lib/java_impl:ship -rjava -rjavaimpl.jar #{src}"
end
end
Expand Down

0 comments on commit a0a4429

Please sign in to comment.