forked from postmodern/digest-crc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
44 lines (36 loc) · 864 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
35
36
37
38
39
40
41
42
43
44
require 'rubygems'
begin
require 'bundler/setup'
rescue LoadError => e
abort e.message
end
require 'rake'
require 'rubygems/tasks'
Gem::Tasks.new
namespace :build do
desc "Builds the C extensions"
task :c_exts do
Dir.chdir('ext/digest') { sh 'rake' }
end
end
require 'rake/clean'
CLEAN.include('ext/digest/crc*/extconf.h')
CLEAN.include('ext/digest/crc*/Makefile')
CLEAN.include('ext/digest/crc*/*.o')
CLEAN.include('ext/digest/crc*/*.so')
require 'rspec/core/rake_task'
namespace :spec do
RSpec::Core::RakeTask.new(:pure)
task :pure => :clean
if RUBY_ENGINE == 'ruby'
RSpec::Core::RakeTask.new(:c_exts)
task :c_exts => 'build:c_exts'
end
end
task :spec => 'spec:pure'
task :spec => 'spec:c_exts' if RUBY_ENGINE == 'ruby'
task :test => :spec
task :default => :spec
require 'yard'
YARD::Rake::YardocTask.new
task :doc => :yard