File: Rakefile

package info (click to toggle)
ruby-strptime 0.2.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 224 kB
  • sloc: ansic: 1,716; ruby: 320; makefile: 3; sh: 3
file content (36 lines) | stat: -rw-r--r-- 1,010 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
require "bundler"
Bundler::GemHelper.install_tasks
require "rspec/core/rake_task"
require 'yard'

RSpec::Core::RakeTask.new(:spec)

task :default => [:compile, :spec]
require "rake/extensiontask"

task :build => :compile
task :spec => :compile

desc 'Generate YARD document'
YARD::Rake::YardocTask.new(:doc) do |t|
  t.files   = ['ext/strptime/strptime.c']
  t.options = []
  t.options << '--debug' << '--verbose' if $trace
end

spec = eval File.read("strptime.gemspec")
Rake::ExtensionTask.new("strptime", spec) do |ext|
  ext.ext_dir = 'ext/strptime'
  ext.cross_compile = true
  ext.lib_dir = File.join(*['lib', 'strptime', ENV['FAT_DIR']].compact)
  # cross_platform names are of MRI's platform name
  ext.cross_platform = ['x86-mingw32', 'x64-mingw32']
end

namespace :build do
  desc 'Build gems for Windows per rake-compiler-dock'
  task :windows do
    require 'rake_compiler_dock'
    RakeCompilerDock.sh 'bundle && rake cross native gem RUBY_CC_VERSION=2.0.0:2.1.6:2.2.2:2.3.0:2.4.0:2.5.0'
  end
end