1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
# -*- ruby -*-
require 'rubygems'
require 'hoe'
require './lib/inline.rb'
Hoe.new("RubyInline", Inline::VERSION) do |inline|
inline.developer 'Ryan Davis', 'ryand-ruby@zenspider.com'
inline.clean_globs << File.expand_path("~/.ruby_inline")
inline.spec_extras[:requirements] =
"A POSIX environment and a compiler for your language."
end
desc "run all examples"
task :examples do
%w(example.rb example2.rb
tutorial/example1.rb
tutorial/example2.rb).each do |e|
rm_rf '~/.ruby_inline'
ruby "-Ilib -w #{e}"
end
end
desc "run simple benchmarks"
task :bench do
verbose(false) do
ruby "-Ilib ./example.rb"
ruby "-Ilib ./example.rb 1000000 12" # 12 is the bignum cutoff for factorial
end
end
|