Sha256: c89f3951baffd7f53a0b381696978806a1f8a0e1aaa2bb32c794b22f1fbb2a6e

Contents?: true

Size: 974 Bytes

Versions: 5

Compression:

Stored size: 974 Bytes

Contents

# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'writeexcel/version'

Gem::Specification.new do |gem|
  gem.name          = "writeexcel"
  gem.version       = WriteExcel::VERSION
  gem.authors       = ["Hideo NAKAMURA"]
  gem.email         = ["cxn03651@msj.biglobe.ne.jp"]
  gem.description   = "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.summary       = "Write to a cross-platform Excel binary file."
  gem.homepage      = "http://github.com/cxn03651/writeexcel#readme"

  gem.files         = `git ls-files`.split($/)
  gem.executables   = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
  gem.test_files    = gem.files.grep(%r{^(test|spec|features)/})
  gem.require_paths = ["lib"]
  gem.extra_rdoc_files = [
    "LICENSE.txt",
    "README.rdoc"
  ]
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
writeexcel-1.0.1 writeexcel.gemspec
writeexcel-1.0.0 writeexcel.gemspec
writeexcel-0.6.19 writeexcel.gemspec
writeexcel-0.6.18 writeexcel.gemspec
writeexcel-0.6.17 writeexcel.gemspec