File: Rakefile

package info (click to toggle)
ruby-prof 1.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,048 kB
  • sloc: ruby: 9,805; ansic: 2,968; makefile: 7
file content (98 lines) | stat: -rw-r--r-- 2,747 bytes parent folder | download
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
87
88
89
90
91
92
93
94
95
96
97
98
# encoding: utf-8

require "rubygems/package_task"
require "rake/extensiontask"
require "rake/testtask"
require "rdoc/task"
require "date"
require "rake/clean"

# To release a version of ruby-prof:
#   * Update lib/ruby-prof/version.rb
#   * Update CHANGES
#   * 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 (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")

# specify which versions/builds to cross compile
Rake::ExtensionTask.new do |ext|
  ext.gem_spec = default_spec
  ext.name = SO_NAME
  ext.ext_dir = "ext/#{SO_NAME}"
  ext.lib_dir = "lib/#{Gem::Version.new(RUBY_VERSION).segments[0..1].join('.')}"
  ext.cross_compile = true
  ext.cross_platform = ['x64-mingw32']
end

# Rake task to build the default package
Gem::PackageTask.new(default_spec) do |pkg|
  pkg.need_tar = true
end

# make sure rdoc has been built when packaging
# why do we ship rdoc as part of the gem?
Rake::Task[:package].enhance [:rdoc]

# Setup Windows Gem
if RUBY_PLATFORM.match(/mswin|mingw/)
  # Windows specification
  win_spec = default_spec.clone
  win_spec.platform = Gem::Platform::CURRENT
  win_spec.files += Dir.glob('lib/**/*.so')

  # 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 << "--line-numbers"
  # Make the readme file the start page for the generated html
  rdoc.options << '--main' << 'README.md'
  rdoc.rdoc_files.include('bin/*',
                          'doc/*.rdoc',
                          'lib/**/*.rb',
                          'ext/ruby_prof/*.c',
                          'ext/ruby_prof/*.h',
                          'README.md',
                          'LICENSE')
end

task :default => :test

for file in Dir['lib/**/*.{o,so,bundle}']
  CLEAN.include file
end
for file in Dir['doc/**/*.{txt,dat,png,html}']
  CLEAN.include file
end
CLEAN.reject!{|f| !File.exist?(f)}
task :clean do
  # remove tmp dir contents completely after cleaning
  FileUtils.rm_rf('tmp/*')
end

desc 'Run the ruby-prof test suite'
Rake::TestTask.new do |t|
  t.libs += %w(lib ext test)
  t.test_files = Dir['test/**_test.rb']
  t.verbose = true
  t.warning = true
end