Sha256: 0c2cc269271c778c38cf319c02a4b0ab555e12b7a423bfae0b2a5c73c968169e

Contents?: true

Size: 1.56 KB

Versions: 34

Compression:

Stored size: 1.56 KB

Contents

require 'rubygems'
require 'rake'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = "writeexcel"
    gem.summary = %Q{Write to a cross-platform Excel binary file.}
    gem.description = %Q{Multiple worksheets can be added to a workbook and formatting can be applied to cells. Text, numbers, formulas, hyperlinks and images can be written to the cells.}
    gem.email = "cxn03651@msj.biglobe.ne.jp"
    gem.homepage = "http://wiki.github.com/cxn03651/writeexcel/"
    gem.authors = ["Hideo NAKAMURA"]
    # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
  end
  Jeweler::GemcutterTasks.new
rescue LoadError
  puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
end

require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
  test.libs << 'lib' << 'test'
  test.pattern = 'test/**/test_*.rb'
  test.verbose = true
end

begin
  require 'rcov/rcovtask'
  Rcov::RcovTask.new do |test|
    test.libs << 'test'
    test.pattern = 'test/**/test_*.rb'
    test.verbose = true
  end
rescue LoadError
  task :rcov do
    abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
  end
end

task :test => :check_dependencies

task :default => :test

require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "writeexcel #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

34 entries across 34 versions & 3 rubygems

Version Path
sunrise-cms-0.5.0.rc1 vendor/bundle/ruby/1.9.1/gems/writeexcel-0.6.16/Rakefile
writeexcel-0.6.16 Rakefile
writeexcel-0.6.15 Rakefile
writeexcel-0.6.14 Rakefile
sunrise-cms-0.3.3 vendor/bundle/ruby/1.9.1/gems/writeexcel-0.6.13/Rakefile
sunrise-cms-0.3.2 vendor/bundle/ruby/1.9.1/gems/writeexcel-0.6.13/Rakefile
sunrise-cms-0.3.1 vendor/bundle/ruby/1.9.1/gems/writeexcel-0.6.13/Rakefile
sunrise-cms-0.3.0 vendor/bundle/ruby/1.9.1/gems/writeexcel-0.6.13/Rakefile
sunrise-cms-0.3.0.rc vendor/bundle/ruby/1.9.1/gems/writeexcel-0.6.13/Rakefile
writeexcel-0.6.13 Rakefile
ricardoo27-writeexcel-0.6.12.2 Rakefile
ricardoo27-writeexcel-0.6.12.1 Rakefile
writeexcel-0.6.12 Rakefile
writeexcel-0.6.11 Rakefile
writeexcel-0.6.10 Rakefile
writeexcel-0.6.9 Rakefile
writeexcel-0.6.8 Rakefile
writeexcel-0.6.7 Rakefile
writeexcel-0.6.6 Rakefile
writeexcel-0.6.5 Rakefile