Sha256: 15f67491769212858f20b20d4cef9c235ce523e7e74c82b2b848c5fc65ccbe5f

Contents?: true

Size: 567 Bytes

Versions: 4

Compression:

Stored size: 567 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
  system "yardoc"
end

task :test do
     require 'rake/testtask'
     Rake::TestTask.new do |t|
       t.libs << 'test'
       t.test_files = FileList['test/**/tc_*.rb']
       t.verbose = true
     end
end

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

task :default => :test

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
axlsx-1.1.4 Rakefile
axlsx-1.1.3 Rakefile
axlsx-1.1.2 Rakefile
axlsx-1.1.1 Rakefile