Sha256: c3ff0dee33d528da91637f1b8f12352b5cd7d44438c880d39c125745c1f00920

Contents?: true

Size: 754 Bytes

Versions: 1

Compression:

Stored size: 754 Bytes

Contents

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 caxlsx-#{Axlsx::VERSION}.gem"
end

task :default => :test

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
caxlsx-2.0.2 Rakefile