-
Notifications
You must be signed in to change notification settings - Fork 7
/
Rakefile
30 lines (27 loc) · 1.13 KB
/
Rakefile
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
require 'rdoc/task'
task :default => :test
# We test this way because of what this library does.
# The tests wrap and load C++ wrapper code constantly.
# When running all the tests at once, we very quickly run
# into problems where Rice crashes because
# a given C++ class is already wrapped, or glibc doesn't like our
# unorthodox handling of it's pieces. So we need to run the
# tests individually
desc "Run the tests"
task :test do
require 'rbconfig'
FileList["test/*_test.rb"].each do |file|
# To allow multiple ruby installs (like a multiruby test suite), I need to get
# the exact ruby binary that's linked to the ruby running the Rakefile. Just saying
# "ruby" will find the system's installed ruby and be worthless
ruby = File.join(RbConfig::CONFIG["bindir"], RbConfig::CONFIG["RUBY_INSTALL_NAME"])
sh "#{ruby} -Itest -S rspec #{file}"
end
end
Rake::RDocTask.new do |rd|
rd.main = "README"
rd.rdoc_files.include("README", "lib/**/*.rb")
rd.rdoc_files.exclude("**/jamis.rb")
rd.template = File.expand_path(File.dirname(__FILE__) + "/lib/jamis.rb")
rd.options << '--line-numbers' << '--inline-source'
end