diff options
| author | Randy Morgan <[email protected]> | 2011-12-07 23:42:48 +0900 |
|---|---|---|
| committer | Randy Morgan <[email protected]> | 2011-12-07 23:42:48 +0900 |
| commit | 29551803ab1ed987c2c13b477a2f1d86b7c616f0 (patch) | |
| tree | 8a22c7641b699a1e0967b5836f3fec06c26f7749 /axlsx.gemspec | |
| parent | 2cd0870511ad34b51b689223cfea40daa7d1ba98 (diff) | |
| download | caxlsx-29551803ab1ed987c2c13b477a2f1d86b7c616f0.tar.gz caxlsx-29551803ab1ed987c2c13b477a2f1d86b7c616f0.zip | |
patch for issue #1
force binary encoding for zip entries.
[bug] fixed error in app.rb so extended properties can now be used.
improved support for OOXML cell element types.
Diffstat (limited to 'axlsx.gemspec')
| -rw-r--r-- | axlsx.gemspec | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/axlsx.gemspec b/axlsx.gemspec index 264e4f73..0ff8dd41 100644 --- a/axlsx.gemspec +++ b/axlsx.gemspec @@ -14,9 +14,10 @@ Gem::Specification.new do |s| 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 = Dir.glob("{lib/**/*.rb,lib/schema,examples}/**/*") + %w{ LICENSE README.md Rakefile CHANGELOG.md .yardopts } + s.test_files = Dir.glob("{test/**/*.rb}") - # s.files = FileList.new('*', 'lib/**/*', 'doc/**/*', 'schema/**/*', 'examples/**/*') do |fl| + # s.files = FileList.new('*', 'lib/**/*.rb', 'doc/**/*', /**/*', 'examples/**/*') do |fl| # fl.exclude("*.*~") # fl.exclude(".*") # fl.exclude("todo") @@ -32,11 +33,10 @@ Gem::Specification.new do |s| 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_runtime_dependency 'rubyzip', '~> 0.9' s.add_development_dependency 'rake', "0.8.7" if RUBY_VERSION == "1.9.2" s.add_development_dependency 'rake', "~> 0.9" 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' |
