diff options
| author | mishina <[email protected]> | 2022-04-10 10:58:48 +0900 |
|---|---|---|
| committer | mishina <[email protected]> | 2022-04-10 11:01:36 +0900 |
| commit | d0e0868def1b6f61fbd8290c129c2bf058c7214f (patch) | |
| tree | 0ad6430fc3e57ec0ca03e17b37f108c62ae25b85 | |
| parent | 09c8f3fdd5d62918d59951697107b3b58ad24fb2 (diff) | |
| download | caxlsx-d0e0868def1b6f61fbd8290c129c2bf058c7214f.tar.gz caxlsx-d0e0868def1b6f61fbd8290c129c2bf058c7214f.zip | |
Update gemspec to recent styles
- `date` should not be set
- Remove deprecated `test_files` to shrink gem size
| -rw-r--r-- | axlsx.gemspec | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/axlsx.gemspec b/axlsx.gemspec index 5bde116a..5da4d73f 100644 --- a/axlsx.gemspec +++ b/axlsx.gemspec @@ -7,14 +7,12 @@ Gem::Specification.new do |s| s.email = '[email protected]' s.homepage = 'https://github.com/caxlsx/caxlsx' 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.license = 'MIT' s.description = <<-eof xlsx spreadsheet generation with charts, images, automated column width, customizable styles and full schema validation. Axlsx helps you create beautiful Office Open XML Spreadsheet documents ( Excel, Google Spreadsheets, Numbers, LibreOffice) 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("{lib/**/*,examples/**/*.rb,examples/**/*.jpeg}") + %w{ LICENSE README.md Rakefile CHANGELOG.md .yardopts .yardopts_guide } - s.test_files = Dir.glob("{test/**/*}") s.add_runtime_dependency 'nokogiri', '~> 1.10', '>= 1.10.4' s.add_runtime_dependency 'rubyzip', '>= 1.3.0', '< 3' |
