forked from randym/axlsx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
36 lines (29 loc) · 815 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
require File.expand_path(File.dirname(__FILE__) + '/lib/axlsx/version.rb')
task :build => :gendoc do
system "gem build axlsx.gemspec"
end
task :benchmark do
require File.expand_path(File.dirname(__FILE__) + '/test/benchmark.rb')
end
task :gendoc do
#puts 'yard doc generation disabled until JRuby build native extensions for redcarpet or yard removes the dependency.'
system "yardoc"
system "yard stats --list-undoc"
end
task :test do
require 'rake/testtask'
Rake::TestTask.new do |t|
t.libs << 'test'
t.test_files = FileList['test/**/tc_*.rb']
t.verbose = false
t.warning = true
end
end
task :report do
require 'cover_me'
CoverMe.complete!
end
task :release => :build do
system "gem push axlsx-#{Axlsx::VERSION}.gem"
end
task :default => :test