forked from chyh1990/rfreeimage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
34 lines (28 loc) · 760 Bytes
/
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
require 'rake/testtask'
begin
require 'rake/extensiontask'
rescue LoadError
abort <<-error
rake-compile is missing; Rugged depends on rake-compiler to build the C wrapping code.
Install it by running `gem i rake-compiler`
error
end
gemspec = Gem::Specification::load(File.expand_path('../rfreeimage.gemspec', __FILE__))
Gem::PackageTask.new(gemspec) do |pkg|
end
Rake::ExtensionTask.new('rfreeimage', gemspec) do |r|
r.lib_dir = 'lib/rfreeimage'
end
desc "checkout freeimage source"
task :checkout do
if !ENV['CI_BUILD']
sh "git submodule update --init"
end
end
Rake::Task[:compile].prerequisites.insert(0, :checkout)
Rake::TestTask.new do |t|
t.libs << 'lib' << 'test'
t.pattern = 'test/*_test.rb'
t.verbose = false
t.warning = true
end