forked from globegit/postgresql-plruby
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathRakefile
48 lines (41 loc) · 1.08 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
require 'rake'
require 'rake/testtask'
require 'rake/clean'
require 'rbconfig'
include Config
# TODO: Reorganize code to use Rake compiler.
CLEAN.include(
'**/*.gem', # Gem files
'**/*.rbc', # Rubinius
'**/*.o', # C object file
'**/*.log', # Ruby extension build log
'**/Makefile', # C Makefile
'**/conftest.dSYM', # OS X build directory
"**/*.#{CONFIG['DLEXT']}" # C shared object
)
desc 'Build the postgresql-plruby source code'
task :build => [:clean] do
ruby "extconf.rb"
sh "make"
end
namespace :gem do
desc 'Create the gem'
task :create => [:clean] do
spec = eval(IO.read('postgresql-plruby.gemspec'))
Gem::Builder.new(spec).build
end
desc 'Install the gem'
task :install => [:create] do
file = Dir["*.gem"].first
sh "gem install #{file}"
end
end
# TODO: Reorganize tests to make them work.
Rake::TestTask.new do |t|
task :test => [:build]
t.libs << 'ext'
t.test_files = FileList['test/**/*.rb']
t.warning = true
t.verbose = true
end
task :default => :test