Sha256: f114193cda2be27e7fefd86e3775b801166a6f58415696a64c321930e371dae8

Contents?: true

Size: 815 Bytes

Versions: 7

Compression:

Stored size: 815 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 :report do
  require 'cover_me'
  CoverMe.complete!
end

task :release => :build do
  system "gem push axlsx-#{Axlsx::VERSION}.gem"
end

task :default => :test

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
axlsx-1.3.6 Rakefile
axlsx-1.3.5 Rakefile
axlsx-1.3.4 Rakefile
axlsx-1.2.3 Rakefile
axlsx-1.2.2 Rakefile
axlsx-1.2.1 Rakefile
axlsx-1.2.0 Rakefile