Sha256: ca57b74b53c067c09cad6bb1abe321f0923578ca3ac14a4bea42b3f618358810
Contents?: true
Size: 598 Bytes
Versions: 5
Compression:
Stored size: 598 Bytes
Contents
# frozen_string_literal: true 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 system "yardoc" system "yard stats --list-undoc" end 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 task release: :build do system "gem push caxlsx-#{Axlsx::VERSION}.gem" end task default: :test
Version data entries
5 entries across 5 versions & 2 rubygems