Sha256: 5b727b1bcdf1e58c5a52c815d946c2c17cda502cbeb036dd3e19c0909842d4a8

Contents?: true

Size: 473 Bytes

Versions: 12

Compression:

Stored size: 473 Bytes

Contents

require File.expand_path(File.dirname(__FILE__) + '/lib/axlsx/version.rb')

task :build => :gendoc do
  system "gem build axlsx.gemspec"
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

12 entries across 12 versions & 1 rubygems

Version Path
axlsx-1.1.0 Rakefile
axlsx-1.0.18 Rakefile
axlsx-1.0.17 Rakefile
axlsx-1.0.16 Rakefile
axlsx-1.0.15 Rakefile
axlsx-1.0.14 Rakefile
axlsx-1.0.13 Rakefile
axlsx-1.0.12 Rakefile
axlsx-1.0.11 Rakefile
axlsx-1.0.10 Rakefile
axlsx-1.0.10a Rakefile
axlsx-1.0.9 Rakefile