Sha256: 629109aeec7f8c1ba6da7e1069aa3c09d74050c51854b588b3dea7e59c4da31c
Contents?: true
Size: 1.92 KB
Versions: 1
Compression:
Stored size: 1.92 KB
Contents
require 'rake' require File.expand_path(File.dirname(__FILE__) + '/lib/axlsx/version.rb') Gem::Specification.new do |s| s.name = 'axlsx' s.version = Axlsx::VERSION s.author = "Randy Morgan" s.email = 'digital.ipseity@gmail.com' s.homepage = 'https://github.com/randym/axlsx' s.platform = Gem::Platform::RUBY s.date = Time.now.strftime('%Y-%m-%d') s.summary = "excel OOXML (xlsx) with charts, styles, images and autowidth columns." s.has_rdoc = 'axlsx' s.description = <<-eof xlsx generation with charts, images, automated column width, customizable styles and full schema validation. Axlsx excels at helping you generate beautiful Office Open XML Spreadsheet documents without having to understand the entire ECMA specification. Check out the README for some examples of how easy it is. Best of all, you can validate your xlsx file before serialization so you know for sure that anything generated is going to load on your client's machine. eof # s.files = Dir.glob("{doc,lib,test,schema,examples}/**/*") + %w{ LICENSE README.md Rakefile CHANGELOG.md } s.files = FileList.new('*', 'lib/**/*', 'doc/**/*', 'schema/**/*', 'examples/**/*') do |fl| fl.exclude("*.*~") fl.exclude(".*") fl.exclude("todo") fl.exclude("*.gem") fl.exclude("*.xlsx") end s.test_files = FileList.new('test/**/*') do |fl| fl.exclude("*.*~") end s.add_runtime_dependency 'nokogiri', '>= 1.4.1' s.add_runtime_dependency 'activesupport', '>= 2.3.9' s.add_runtime_dependency 'i18n', '>= 0.6.0' s.add_runtime_dependency 'rmagick', '>= 2.12.2' s.add_runtime_dependency 'zip', '>= 2.0.2' s.add_development_dependency 'rake', "0.8.7" if RUBY_VERSION == "1.9.2" s.add_development_dependency 'rake', "0.9.2.2" if ["1.9.3", "1.8.7"].include?(RUBY_VERSION) s.add_development_dependency 'bundler' s.required_ruby_version = '>= 1.8.7' s.require_path = 'lib' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
axlsx-1.0.11 | axlsx.gemspec |