roo 2.3.0 → 2.3.2

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
  SHA1:
3
- metadata.gz: f9b79f7270fb925c4aa402c0bd1bcccfc422ac92
4
- data.tar.gz: f5ed3e4155c09890a710265c3a31e308ec4660fa
3
+ metadata.gz: a2e51de2c40930cef415563182257a853b10978e
4
+ data.tar.gz: 3b17c8cfb99d1a16778e20289fea7ae9b1ed88a5
5
5
  SHA512:
6
- metadata.gz: bb21c71a0343bcce335b4ddc7b5b0caec8ba69d5059e09868e76a7494338fd11bd8d6dae0c0697dbc2ccef4564f7fa19ae56cc09b1c6bca22a6670b7ee1ada6c
7
- data.tar.gz: 4563b478a1a0c71fbd7087097917b4eacc0a744d8f3d806ce02f8836b767f34a16c40e3207695180ff1a9882f74a6c9c6b354f84547fee5e91a0bf08959ff04a
6
+ metadata.gz: a8f57baddedd100e461fb350814c39dfe765a89a911f2cda0579281612cf37ca95fd9d0459f0572a2241d2e99871045dd5f4573d20364827f756b875a01484b4
7
+ data.tar.gz: 87012bc658fbc668b7e655de16b339034cf5887f3e0b3ceb468626e9203c22fd0d05e7d1bbea243525cb7c27e61e2af296f1804bc58def990dc4bf1f95463cd5
data/.travis.yml CHANGED
@@ -1,8 +1,8 @@
1
1
  language: ruby
2
2
  rvm:
3
3
  - 2.0.0
4
- - 2.1
5
- - 2.2.0
4
+ - 2.1.8
5
+ - 2.2.4
6
6
  - ruby-head
7
7
  - jruby-19mode # JRuby in 1.9 mode
8
8
  - rbx-2
data/CHANGELOG.md CHANGED
@@ -1,3 +1,20 @@
1
+ ## [2.3.2] 2016-02-18
2
+ ### Fixed
3
+ - Handle url with long query params (ex. S3 secure url) [302](https://github.com/roo-rb/roo/pull/302)
4
+ - Allow streaming for Roo::CSV [297](https://github.com/roo-rb/roo/pull/297)
5
+ - Export Fixnums to Added csv [295](https://github.com/roo-rb/roo/pull/295)
6
+ - Removed various Ruby warnings [289](https://github.com/roo-rb/roo/pull/289)
7
+ - Fix incorrect example result in Readme.md [293](https://github.com/roo-rb/roo/pull/293)
8
+
9
+ ## [2.3.1] - 2016-01-08
10
+ ### Fixed
11
+ - Properly parse sci-notation number like 1E-3 [#288](https://github.com/roo-rb/roo/pull/288)
12
+ - Include all tests in default rake run [#283](https://github.com/roo-rb/roo/pull/283)
13
+ - Fix zero-padded numbers for Excelx [#282](https://github.com/roo-rb/roo/pull/282)
14
+
15
+ ### Changed
16
+ - Moved `ERROR_VALUES` from Excelx::Cell::Number ~> Excelx. [#280](https://github.com/roo-rb/roo/pull/280)
17
+
1
18
  ## [2.3.0] - 2015-12-10
2
19
  ### Changed
3
20
  - Excelx::Cell::Number will return a String instead of an Integer or Float if the cell has an error like #DIV/0, etc. [#273](https://github.com/roo-rb/roo/pull/273)
data/README.md CHANGED
@@ -113,8 +113,8 @@ end
113
113
  Use ``sheet.parse`` to return an array of rows. Column names can be a ``String`` or a ``Regexp``.
114
114
 
115
115
  ```ruby
116
- sheet.parse(:id => /UPC|SKU/,:qty => /ATS*\sATP\s*QTY\z/)
117
- # => [{:upc => 727880013358, :qty => 12}, ...]
116
+ sheet.parse(id: /UPC|SKU/, qty: /ATS*\sATP\s*QTY\z/)
117
+ # => [{:id => 727880013358, :qty => 12}, ...]
118
118
  ```
119
119
 
120
120
  Use the ``:header_search`` option to locate the header row and assign the header names.
@@ -126,7 +126,7 @@ sheet.parse(header_search: [/UPC*SKU/,/ATS*\sATP\s*QTY\z/])
126
126
  Use the ``:clean`` option to strip out control characters and surrounding white space.
127
127
 
128
128
  ```ruby
129
- sheet.parse(:clean => true)
129
+ sheet.parse(clean: true)
130
130
  ```
131
131
 
132
132
  ### Exporting spreadsheets
@@ -189,6 +189,9 @@ xlsx.cell(3, 'C')
189
189
  # => 600000383.0
190
190
 
191
191
  xlsx.excelx_value(row,col)
192
+ # => '600000383'
193
+
194
+ xlsx.formatted_value(row,col)
192
195
  # => '0600000383'
193
196
  ```
194
197
 
@@ -206,7 +209,7 @@ Roo::OpenOffice has support for encrypted OpenOffice spreadsheets.
206
209
 
207
210
  ```ruby
208
211
  # Load an encrypted OpenOffice Spreadsheet
209
- ods = Roo::OpenOffice.new("myspreadsheet.ods", :password => "password")
212
+ ods = Roo::OpenOffice.new("myspreadsheet.ods", password: "password")
210
213
  ```
211
214
 
212
215
  ``Roo::OpenOffice`` can access celltype, comments, font information, formulas and labels.
data/Rakefile CHANGED
@@ -7,7 +7,7 @@ require 'coveralls/rake/task'
7
7
  # Test unit
8
8
  Rake::TestTask.new do |t|
9
9
  t.libs << 'test'
10
- t.test_files = FileList['test/test*.rb']
10
+ t.test_files = FileList['test/**/test*.rb']
11
11
  t.verbose = true
12
12
  end
13
13
 
data/lib/roo/base.rb CHANGED
@@ -535,6 +535,16 @@ class Roo::Base
535
535
  initialize(@filename)
536
536
  end
537
537
 
538
+ def find_basename(filename)
539
+ if uri?(filename)
540
+ require 'uri'
541
+ uri = URI::parse filename
542
+ File.basename(uri.path)
543
+ elsif !is_stream?(filename)
544
+ File.basename(filename)
545
+ end
546
+ end
547
+
538
548
  def make_tmpdir(prefix = nil, root = nil, &block)
539
549
  prefix = "#{TEMP_PREFIX}#{prefix}"
540
550
 
@@ -599,7 +609,7 @@ class Roo::Base
599
609
 
600
610
  def download_uri(uri, tmpdir)
601
611
  require 'open-uri'
602
- tempfilename = File.join(tmpdir, File.basename(uri))
612
+ tempfilename = File.join(tmpdir, find_basename(uri))
603
613
  begin
604
614
  File.open(tempfilename, 'wb') do |file|
605
615
  open(uri, 'User-Agent' => "Ruby/#{RUBY_VERSION}") do |net|
@@ -701,6 +711,8 @@ class Roo::Base
701
711
  case onecell
702
712
  when String
703
713
  %("#{onecell.gsub('"', '""')}") unless onecell.empty?
714
+ when Fixnum
715
+ onecell.to_s
704
716
  when Float
705
717
  if onecell == onecell.to_i
706
718
  onecell.to_i.to_s
data/lib/roo/csv.rb CHANGED
@@ -60,6 +60,8 @@ class Roo::CSV < Roo::Base
60
60
  tmp_filename = download_uri(filename, tmpdir)
61
61
  CSV.foreach(tmp_filename, options, &block)
62
62
  end
63
+ elsif is_stream?(filename_or_stream)
64
+ CSV.new(filename_or_stream, options).each(&block)
63
65
  else
64
66
  CSV.foreach(filename, options, &block)
65
67
  end
@@ -117,4 +119,6 @@ class Roo::CSV < Roo::Base
117
119
 
118
120
  @cleaned[sheet] = true
119
121
  end
122
+
123
+ alias_method :filename_or_stream, :filename
120
124
  end
@@ -2,8 +2,6 @@ module Roo
2
2
  class Excelx
3
3
  class Cell
4
4
  class Number < Cell::Base
5
- ERROR_VALUES = %w(#N/A #REF! #NAME? #DIV/0! #NULL! #VALUE! #NUM!)
6
-
7
5
  attr_reader :value, :formula, :format, :cell_value, :link, :coordinate
8
6
 
9
7
  def initialize(value, formula, excelx_type, style, link, coordinate)
@@ -16,24 +14,25 @@ module Roo
16
14
  end
17
15
 
18
16
  def create_numeric(number)
19
- return number if ERROR_VALUES.include?(number)
20
-
17
+ return number if Excelx::ERROR_VALUES.include?(number)
21
18
  case @format
22
19
  when /%/
23
20
  Float(number)
24
21
  when /\.0/
25
22
  Float(number)
26
23
  else
27
- number.include?('.') ? Float(number) : Integer(number)
24
+ (number.include?('.') || (/\A\d+E[-+]\d+\z/i =~ number)) ? Float(number) : Integer(number)
28
25
  end
29
26
  end
30
27
 
31
28
  def formatted_value
32
- return @cell_value if ERROR_VALUES.include?(@cell_value)
29
+ return @cell_value if Excelx::ERROR_VALUES.include?(@cell_value)
33
30
 
34
31
  formatter = formats[@format]
35
32
  if formatter.is_a? Proc
36
33
  formatter.call(@cell_value)
34
+ elsif zero_padded_number?
35
+ "%0#{@format.size}d"% @cell_value
37
36
  else
38
37
  Kernel.format(formatter, @cell_value)
39
38
  end
@@ -80,6 +79,12 @@ module Roo
80
79
  '@' => proc { |number| number }
81
80
  }
82
81
  end
82
+
83
+ private
84
+
85
+ def zero_padded_number?
86
+ @format[/0+/] == @format
87
+ end
83
88
  end
84
89
  end
85
90
  end
@@ -11,7 +11,7 @@ require 'roo/excelx/cell/time'
11
11
  module Roo
12
12
  class Excelx
13
13
  class Cell
14
- attr_reader :type, :formula, :value, :excelx_type, :excelx_value, :style, :hyperlink, :coordinate
14
+ attr_reader :formula, :value, :excelx_type, :excelx_value, :style, :hyperlink, :coordinate
15
15
  attr_writer :value
16
16
 
17
17
  # DEPRECATED: Please use Cell.create_cell instead.
data/lib/roo/excelx.rb CHANGED
@@ -6,8 +6,11 @@ require 'forwardable'
6
6
 
7
7
  module Roo
8
8
  class Excelx < Roo::Base
9
+ require 'set'
9
10
  extend Forwardable
10
11
 
12
+ ERROR_VALUES = %w(#N/A #REF! #NAME? #DIV/0! #NULL! #VALUE! #NUM!).to_set
13
+
11
14
  require 'roo/excelx/shared'
12
15
  require 'roo/excelx/workbook'
13
16
  require 'roo/excelx/shared_strings'
@@ -36,7 +39,7 @@ module Roo
36
39
 
37
40
  unless is_stream?(filename_or_stream)
38
41
  file_type_check(filename_or_stream, %w[.xlsx .xlsm], 'an Excel 2007', file_warning, packed)
39
- basename = File.basename(filename_or_stream)
42
+ basename = find_basename(filename_or_stream)
40
43
  end
41
44
 
42
45
  @tmpdir = make_tmpdir(basename, options[:tmpdir_root])
@@ -194,6 +197,13 @@ module Roo
194
197
  safe_send(sheet_for(sheet).cells[key], :cell_value)
195
198
  end
196
199
 
200
+ # returns the internal value of an excelx cell
201
+ # Note: this is only available within the Excelx class
202
+ def formatted_value(row, col, sheet = nil)
203
+ key = normalize(row, col)
204
+ safe_send(sheet_for(sheet).cells[key], :formatted_value)
205
+ end
206
+
197
207
  # returns the internal format of an excel cell
198
208
  def excelx_format(row, col, sheet = nil)
199
209
  key = normalize(row, col)
@@ -416,20 +426,6 @@ module Roo
416
426
  end
417
427
  end
418
428
 
419
- # NOTE: To reduce memory, styles, shared_strings, workbook can be class
420
- # variables in a Shared module.
421
- def styles
422
- @styles ||= Styles.new(File.join(@tmpdir, 'roo_styles.xml'))
423
- end
424
-
425
- def shared_strings
426
- @shared_strings ||= SharedStrings.new(File.join(@tmpdir, 'roo_sharedStrings.xml'))
427
- end
428
-
429
- def workbook
430
- @workbook ||= Workbook.new(File.join(@tmpdir, 'roo_workbook.xml'))
431
- end
432
-
433
429
  def safe_send(object, method, *args)
434
430
  object.send(method, *args) if object && object.respond_to?(method)
435
431
  end
@@ -19,7 +19,7 @@ module Roo
19
19
 
20
20
  @only_visible_sheets = options[:only_visible_sheets]
21
21
  file_type_check(filename, '.ods', 'an Roo::OpenOffice', file_warning, packed)
22
- @tmpdir = make_tmpdir(File.basename(filename), options[:tmpdir_root])
22
+ @tmpdir = make_tmpdir(find_basename(filename), options[:tmpdir_root])
23
23
  @filename = local_filename(filename, @tmpdir, packed)
24
24
  # TODO: @cells_read[:default] = false
25
25
  open_oo_file(options)
@@ -285,7 +285,6 @@ module Roo
285
285
  algorithm_node['manifest:initialisation-vector']
286
286
  )
287
287
  key_derivation_name = key_derivation_node['manifest:key-derivation-name']
288
- key_size = key_derivation_node['manifest:key-size'].to_i
289
288
  iteration_count = key_derivation_node['manifest:iteration-count'].to_i
290
289
  salt = Base64.decode64(key_derivation_node['manifest:salt'])
291
290
 
@@ -294,10 +293,8 @@ module Roo
294
293
  start_key_generation_node[
295
294
  'manifest:start-key-generation-name'
296
295
  ]
297
- key_generation_size = start_key_generation_node['manifest:key-size'].to_i
298
296
 
299
297
  hashed_password = password
300
- key = nil
301
298
 
302
299
  if key_generation_name == 'http://www.w3.org/2000/09/xmldsig#sha256'
303
300
 
data/lib/roo/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Roo
2
- VERSION = '2.3.0'
2
+ VERSION = '2.3.2'
3
3
  end
@@ -10,6 +10,13 @@ describe Roo::CSV do
10
10
  end
11
11
  end
12
12
 
13
+ describe '.new with stream' do
14
+ let(:csv) { Roo::CSV.new(File.read(path)) }
15
+ it 'creates an instance' do
16
+ expect(csv).to be_a(Roo::CSV)
17
+ end
18
+ end
19
+
13
20
  describe '#parse' do
14
21
  subject do
15
22
  csv.parse(options)
@@ -6,6 +6,18 @@ describe Roo::Excelx do
6
6
  Roo::Excelx.new(path)
7
7
  end
8
8
 
9
+ describe 'Constants' do
10
+ describe 'ERROR_VALUES' do
11
+ it 'returns all possible errorr values' do
12
+ expect(described_class::ERROR_VALUES).to eq(%w(#N/A #REF! #NAME? #DIV/0! #NULL! #VALUE! #NUM!).to_set)
13
+ end
14
+
15
+ it 'is a set' do
16
+ expect(described_class::ERROR_VALUES).to be_an_instance_of(Set)
17
+ end
18
+ end
19
+ end
20
+
9
21
  describe '.new' do
10
22
  let(:path) { 'test/files/numeric-link.xlsx' }
11
23
 
@@ -283,6 +295,16 @@ describe Roo::Excelx do
283
295
  end
284
296
  end
285
297
 
298
+ describe '#formatted_value' do
299
+ context 'contains zero-padded numbers' do
300
+ let(:path) { 'test/files/zero-padded-number.xlsx' }
301
+
302
+ it 'returns a zero-padded number' do
303
+ expect(subject.formatted_value(4, 1)).to eq '05010'
304
+ end
305
+ end
306
+ end
307
+
286
308
  describe '#excelx_format' do
287
309
  let(:path) { 'test/files/style.xlsx' }
288
310
 
@@ -1,5 +1,4 @@
1
- require 'roo/excelx/cell/base'
2
- require 'roo/link'
1
+ require 'test_helper'
3
2
 
4
3
  class TestRooExcelxCellBase < Minitest::Test
5
4
  def base
@@ -1,6 +1,4 @@
1
- require 'roo/excelx/cell/base'
2
- require 'roo/excelx/cell/boolean'
3
- require 'roo/link'
1
+ require 'test_helper'
4
2
 
5
3
  class TestRooExcelxCellNumber < Minitest::Test
6
4
  def boolean
@@ -1,9 +1,4 @@
1
- require 'date'
2
- require 'roo/excelx/cell/base'
3
- require 'roo/excelx/cell/datetime'
4
- require 'roo/excelx/cell/date'
5
- require 'roo/link'
6
- require 'pry'
1
+ require 'test_helper'
7
2
 
8
3
  class TestRooExcelxCellDate < Minitest::Test
9
4
  def date_cell
@@ -1,7 +1,4 @@
1
- require 'date'
2
- require 'roo/excelx/cell/base'
3
- require 'roo/excelx/cell/datetime'
4
- require 'roo/link'
1
+ require 'test_helper'
5
2
 
6
3
  class TestRooExcelxCellDateTime < Minitest::Test
7
4
  def test_cell_value_is_datetime
@@ -1,5 +1,4 @@
1
- require 'roo/excelx/cell/base'
2
- require 'roo/excelx/cell/empty'
1
+ require 'test_helper'
3
2
 
4
3
  class TestRooExcelxCellEmpty < Minitest::Test
5
4
  def empty
@@ -1,6 +1,4 @@
1
- require 'roo/excelx/cell/base'
2
- require 'roo/excelx/cell/number'
3
- require 'roo/link'
1
+ require 'test_helper'
4
2
 
5
3
  class TestRooExcelxCellNumber < Minitest::Test
6
4
  def number
@@ -17,6 +15,16 @@ class TestRooExcelxCellNumber < Minitest::Test
17
15
  assert_kind_of(Integer, cell.value)
18
16
  end
19
17
 
18
+ def test_scientific_notation
19
+ cell = Roo::Excelx::Cell::Number.new '1.2E-3', nil, ['0'], nil, nil, nil
20
+ assert_kind_of(Float, cell.value)
21
+ end
22
+
23
+ def test_simple_scientific_notation
24
+ cell = Roo::Excelx::Cell::Number.new '1E-3', nil, ['0'], nil, nil, nil
25
+ assert_kind_of(Float, cell.value)
26
+ end
27
+
20
28
  def test_percent
21
29
  cell = Roo::Excelx::Cell::Number.new '42.1', nil, ['0.00%'], nil, nil, nil
22
30
  assert_kind_of(Float, cell.value)
@@ -35,7 +43,7 @@ class TestRooExcelxCellNumber < Minitest::Test
35
43
  end
36
44
 
37
45
  def test_numbers_with_cell_errors
38
- %w(#N/A #REF! #NAME? #DIV/0! #NULL! #VALUE! #NUM!).each do |error|
46
+ Roo::Excelx::ERROR_VALUES.each do |error|
39
47
  cell = Roo::Excelx::Cell::Number.new error, nil, ['General'], nil, nil, nil
40
48
  assert_equal error, cell.value
41
49
  assert_equal error, cell.formatted_value
@@ -1,6 +1,4 @@
1
- require 'roo/excelx/cell/base'
2
- require 'roo/excelx/cell/string'
3
- require 'roo/link'
1
+ require 'test_helper'
4
2
 
5
3
  class TestRooExcelxCellString < Minitest::Test
6
4
  def string
@@ -1,7 +1,4 @@
1
- require 'roo/excelx/cell/base'
2
- require 'roo/excelx/cell/datetime'
3
- require 'roo/excelx/cell/time'
4
- require 'roo/link'
1
+ require 'test_helper'
5
2
 
6
3
  class TestRooExcelxCellTime < Minitest::Test
7
4
  def time
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: roo
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.0
4
+ version: 2.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thomas Preymesser
@@ -12,7 +12,7 @@ authors:
12
12
  autorequire:
13
13
  bindir: bin
14
14
  cert_chain: []
15
- date: 2015-12-10 00:00:00.000000000 Z
15
+ date: 2016-02-19 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: nokogiri
@@ -185,9 +185,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
185
185
  version: '0'
186
186
  requirements: []
187
187
  rubyforge_project:
188
- rubygems_version: 2.4.5
188
+ rubygems_version: 2.4.5.1
189
189
  signing_key:
190
190
  specification_version: 4
191
191
  summary: Roo can access the contents of various spreadsheet files.
192
192
  test_files: []
193
- has_rdoc: