summaryrefslogtreecommitdiffhomepage
path: root/Rakefile
blob: 0e29e787e69f112bdff9a438fbd8d81f3b22c752 (plain)
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
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 :release => :build do
  system "gem push axlsx-#{Axlsx::VERSION}.gem"
end

task :default => :test