workbook 0.9.0 → 0.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 898a4a79301299545d91cfdd5b5f1f261f4cde32337d4713256f21d894cc49f0
4
- data.tar.gz: ee61cd9e3e3687092b5c8ca82e8aa10bf8f846553a3602ce3c46103b43ee4e9b
3
+ metadata.gz: ec0bdb507a80fb55be5230a13bf28eab6b650dd8f7c8609895dcba90d53b02f3
4
+ data.tar.gz: dab18c494f909fd3f486ab0e3cd971992aa40984d2e780f433adb6c96721ebb7
5
5
  SHA512:
6
- metadata.gz: 27b2ab505f2ff035a12e839db5148337c504d81bb2c2517b2eb1ac4749df5e47f31fd281386c4c4d4880c2e24c75a3630d02c7a7bb13e5f62789543bf991f7f9
7
- data.tar.gz: 465f709b61f96afe734739b214d1b56daa06e837ea8cd85f98c9343f9c1f7d3337409616bdc5617fa456de3718427d0d89ae89c1fa40a13efe4afbe8841ac175
6
+ metadata.gz: 7e4e6e75a967577561848fe714857a044192331362674a68a20a63248e47bb65e5cd34ad2847ed20ff8c3ebe2c195c9a8c52f589350a06d720fc2bdec003fd50
7
+ data.tar.gz: 9ac507805db929954970ea95f88483665c3e1f8a63d64be94be09f76d0e527b2eec0e0d1e4886055b27c25f1e2e9c0284b157bf7681beba261fb35c8f695ff70
@@ -1,6 +1,5 @@
1
1
  # frozen_string_literal: true
2
- # frozen_string_literal: true
3
2
 
4
3
  module Workbook
5
- VERSION = "0.9.0"
4
+ VERSION = "0.9.1"
6
5
  end
data/workbook.gemspec CHANGED
@@ -22,11 +22,10 @@ Gem::Specification.new do |s|
22
22
  s.add_dependency("rubyzip", "> 1.2", ">= 1.2.1")
23
23
  s.add_dependency("caxlsx", "> 3.0")
24
24
  s.add_dependency("nokogiri", "> 1.10")
25
-
25
+ s.add_dependency("csv", "> 3.0.0")
26
26
 
27
27
  s.platform = Gem::Platform::RUBY
28
28
  s.files = `git ls-files`.split($/)
29
- s.test_files = s.files.grep(%r{^(test|spec|features)/})
30
29
  s.executables = s.files.grep(%r{^bin/}).map { |f| File.basename(f) }
31
30
  s.require_paths = ["lib"]
32
31
  s.email = ["gem@murb.nl"]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: workbook
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Maarten Brouwers
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-09-14 00:00:00.000000000 Z
11
+ date: 2024-12-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -170,6 +170,20 @@ dependencies:
170
170
  - - ">"
171
171
  - !ruby/object:Gem::Version
172
172
  version: '1.10'
173
+ - !ruby/object:Gem::Dependency
174
+ name: csv
175
+ requirement: !ruby/object:Gem::Requirement
176
+ requirements:
177
+ - - ">"
178
+ - !ruby/object:Gem::Version
179
+ version: 3.0.0
180
+ type: :runtime
181
+ prerelease: false
182
+ version_requirements: !ruby/object:Gem::Requirement
183
+ requirements:
184
+ - - ">"
185
+ - !ruby/object:Gem::Version
186
+ version: 3.0.0
173
187
  description: Workbook contains workbooks, as in a table, contains rows, contains cells,
174
188
  reads/writes excel, ods and csv and tab separated files, and offers basic diffing
175
189
  and sorting capabilities.
@@ -311,66 +325,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
311
325
  - !ruby/object:Gem::Version
312
326
  version: '0'
313
327
  requirements: []
314
- rubygems_version: 3.4.6
328
+ rubygems_version: 3.5.18
315
329
  signing_key:
316
330
  specification_version: 4
317
331
  summary: Workbook is a datastructure to contain books of tables (an anlogy used in
318
332
  e.g. Excel)
319
- test_files:
320
- - test/artifacts/bigtable.xls
321
- - test/artifacts/bigtable.xlsx
322
- - test/artifacts/book_with_colspans.ods
323
- - test/artifacts/book_with_tabs_and_colours.ods
324
- - test/artifacts/book_with_tabs_and_colours.xls
325
- - test/artifacts/book_with_tabs_and_colours.xlsx
326
- - test/artifacts/complex_types.ods
327
- - test/artifacts/complex_types.xls
328
- - test/artifacts/currency_test.ods
329
- - test/artifacts/excel_different_types.csv
330
- - test/artifacts/excel_different_types.ods
331
- - test/artifacts/excel_different_types.txt
332
- - test/artifacts/excel_different_types.xls
333
- - test/artifacts/excel_different_types.xlsx
334
- - test/artifacts/failing_import1.xls
335
- - test/artifacts/heavy.xlsx
336
- - test/artifacts/integer_test.xlsx
337
- - test/artifacts/native_xlsx.xlsx
338
- - test/artifacts/semicolonseparated_in_csv.csv
339
- - test/artifacts/sheet_with_combined_cells.ods
340
- - test/artifacts/sheetduplication.xls
341
- - test/artifacts/simple_csv.csv
342
- - test/artifacts/simple_excel_csv.csv
343
- - test/artifacts/simple_sheet.ods
344
- - test/artifacts/simple_sheet.xls
345
- - test/artifacts/simple_sheet.xlsx
346
- - test/artifacts/simple_sheet_many_sheets.xls
347
- - test/artifacts/skippingcells.xlsx
348
- - test/artifacts/txt_in_xls.xls
349
- - test/artifacts/xls_with_txt_extension.txt
350
- - test/artifacts/xlsx_with_empty_start.xlsx
351
- - test/artifacts/zip_in_xls.xls
352
- - test/helper.rb
353
- - test/test_book.rb
354
- - test/test_column.rb
355
- - test/test_format.rb
356
- - test/test_functional.rb
357
- - test/test_modules_cache.rb
358
- - test/test_modules_cell.rb
359
- - test/test_modules_table_diff_sort.rb
360
- - test/test_modules_type_parser.rb
361
- - test/test_readers_csv_reader.rb
362
- - test/test_readers_ods_reader.rb
363
- - test/test_readers_txt_reader.rb
364
- - test/test_readers_xls_reader.rb
365
- - test/test_readers_xls_shared.rb
366
- - test/test_readers_xlsx_reader.rb
367
- - test/test_row.rb
368
- - test/test_sheet.rb
369
- - test/test_table.rb
370
- - test/test_template.rb
371
- - test/test_types_date.rb
372
- - test/test_writers_csv_writer.rb
373
- - test/test_writers_html_writer.rb
374
- - test/test_writers_json_writer.rb
375
- - test/test_writers_xls_writer.rb
376
- - test/test_writers_xlsx_writer.rb
333
+ test_files: []