Sha256: 5399d4d38157b5458cdaba770db038a10a60ef0d48b73a690d8358988cb3f4e1
Contents?: true
Size: 816 Bytes
Versions: 3
Compression:
Stored size: 816 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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
axlsx-1.3.3 | Rakefile |
axlsx-1.3.2 | Rakefile |
axlsx-1.3.1 | Rakefile |