forked from ruby-prof/ruby-prof
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Rakefile
86 lines (74 loc) · 2.46 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# encoding: utf-8
require "rubygems/package_task"
require "rake/extensiontask"
require "rake/testtask"
require "rdoc/task"
require "date"
# To release a version of ruby-prof:
# * Update version.h
# * Update CHANGES
# * Update rdocs
# * git commit to commit files
# * rake clobber to remove extra files
# * rake compile to build windows gems
# * rake package to create the gems
# * Tag the release in git (tag 0.10.1)
# * Push to ruybgems.org (gem push pkg/<gem files>)
GEM_NAME = 'ruby-prof'
SO_NAME = 'ruby_prof'
default_spec = Gem::Specification.load("#{GEM_NAME}.gemspec")
Rake::ExtensionTask.new do |ext|
ext.gem_spec = default_spec
ext.name = SO_NAME
ext.ext_dir = "ext/#{SO_NAME}"
ext.lib_dir = "lib/#{RUBY_VERSION.sub(/\.\d$/, '')}"
ext.cross_compile = true
ext.cross_platform = ['x86-mswin32-60', 'x86-mingw32-60']
end
# Rake task to build the default package
Gem::PackageTask.new(default_spec) do |pkg|
pkg.need_tar = true
end
# Setup Windows Gem
if RUBY_PLATFORM.match(/win32|mingw32/)
# Windows specification
win_spec = default_spec.clone
win_spec.platform = Gem::Platform::CURRENT
win_spec.files += Dir.glob('lib/**/*.so')
win_spec.instance_variable_set(:@cache_file, nil) # Hack to work arond gem issue
# Unset extensions
win_spec.extensions = nil
# Rake task to build the windows package
Gem::PackageTask.new(win_spec) do |pkg|
pkg.need_tar = false
end
end
# --------- RDoc Documentation ------
desc "Generate rdoc documentation"
RDoc::Task.new("rdoc") do |rdoc|
rdoc.rdoc_dir = 'doc'
rdoc.title = "ruby-prof"
# Show source inline with line numbers
rdoc.options << "--inline-source" << "--line-numbers"
# Make the readme file the start page for the generated html
rdoc.options << '--main' << 'README.rdoc'
rdoc.rdoc_files.include('bin/**/*',
'doc/*.rdoc',
'examples/flat.txt',
'examples/graph.txt',
'examples/graph.html',
'lib/**/*.rb',
'ext/ruby_prof/ruby_prof.c',
'ext/ruby_prof/version.h',
'ext/ruby_prof/measure_*.h',
'README.rdoc',
'LICENSE')
end
task :default => :package
desc 'Run the ruby-prof test suite'
Rake::TestTask.new do |t|
t.libs += %w(lib ext test)
t.test_files = Dir['test/test_suite.rb']
t.verbose = true
t.warning = true
end