-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
51 lines (40 loc) · 1.07 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# frozen_string_literal: true
require "rake/testtask"
require "rake/extensiontask"
require "ruby_memcheck"
require "bundler/gem_tasks"
require "yard"
RubyMemcheck.config(binary_name: "geos_c_impl")
# Build tasks
if RUBY_DESCRIPTION.match(/^jruby/)
task :compile
else
Rake::ExtensionTask.new "geos_c_impl" do |ext|
ext.lib_dir = "lib/rgeo/geos"
end
end
task :clean do
clean_files = %w[pkg tmp] +
Dir.glob("ext/**/Makefile*") +
Dir.glob("ext/**/*.{o,class,log,dSYM}") +
Dir.glob("**/*.{bundle,so,dll,rbc,jar}") +
Dir.glob("**/.rbx")
clean_files.each { |path| rm_rf path }
end
test_config = proc do |t|
t.libs << "test"
t.libs << "lib"
t.test_files = FileList["test/**/*_test.rb"]
end
Rake::TestTask.new(:test, &test_config)
namespace :test do
RubyMemcheck::TestTask.new(valgrind: :compile, &test_config)
end
YARD::Rake::YardocTask.new do |t|
# Runs a server to appreciate doc after having it running
t.after = proc do
exec "ruby", "-run", "-e", "httpd", File.join(__dir__, "yardoc")
end
end
task test: :compile
task default: [:clean, :test]