spreadsheet 1.3.2 → 1.3.4

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.
Files changed (54) hide show
  1. checksums.yaml +4 -4
  2. data/lib/parseexcel/parseexcel.rb +66 -58
  3. data/lib/parseexcel/parser.rb +1 -1
  4. data/lib/parseexcel.rb +1 -1
  5. data/lib/spreadsheet/column.rb +11 -9
  6. data/lib/spreadsheet/compatibility.rb +3 -1
  7. data/lib/spreadsheet/datatypes.rb +149 -147
  8. data/lib/spreadsheet/encodings.rb +20 -16
  9. data/lib/spreadsheet/errors.rb +2 -2
  10. data/lib/spreadsheet/excel/error.rb +23 -22
  11. data/lib/spreadsheet/excel/internals/biff5.rb +11 -11
  12. data/lib/spreadsheet/excel/internals/biff8.rb +13 -13
  13. data/lib/spreadsheet/excel/internals.rb +451 -451
  14. data/lib/spreadsheet/excel/offset.rb +32 -31
  15. data/lib/spreadsheet/excel/password_hash.rb +18 -18
  16. data/lib/spreadsheet/excel/reader/biff5.rb +34 -35
  17. data/lib/spreadsheet/excel/reader/biff8.rb +234 -222
  18. data/lib/spreadsheet/excel/reader.rb +1320 -1274
  19. data/lib/spreadsheet/excel/rgb.rb +91 -91
  20. data/lib/spreadsheet/excel/row.rb +99 -91
  21. data/lib/spreadsheet/excel/sst_entry.rb +40 -38
  22. data/lib/spreadsheet/excel/workbook.rb +86 -76
  23. data/lib/spreadsheet/excel/worksheet.rb +125 -107
  24. data/lib/spreadsheet/excel/writer/biff8.rb +56 -55
  25. data/lib/spreadsheet/excel/writer/format.rb +273 -256
  26. data/lib/spreadsheet/excel/writer/n_worksheet.rb +837 -798
  27. data/lib/spreadsheet/excel/writer/workbook.rb +671 -635
  28. data/lib/spreadsheet/excel/writer/worksheet.rb +898 -861
  29. data/lib/spreadsheet/excel/writer.rb +1 -1
  30. data/lib/spreadsheet/excel.rb +18 -11
  31. data/lib/spreadsheet/font.rb +30 -26
  32. data/lib/spreadsheet/format.rb +74 -59
  33. data/lib/spreadsheet/link.rb +7 -5
  34. data/lib/spreadsheet/note.rb +6 -6
  35. data/lib/spreadsheet/noteObject.rb +5 -5
  36. data/lib/spreadsheet/row.rb +33 -23
  37. data/lib/spreadsheet/version.rb +1 -1
  38. data/lib/spreadsheet/workbook.rb +27 -13
  39. data/lib/spreadsheet/worksheet.rb +102 -68
  40. data/lib/spreadsheet/writer.rb +3 -0
  41. data/lib/spreadsheet.rb +12 -15
  42. data/test/excel/reader.rb +8 -8
  43. data/test/excel/row.rb +35 -31
  44. data/test/excel/writer/workbook.rb +18 -16
  45. data/test/excel/writer/worksheet.rb +10 -8
  46. data/test/font.rb +44 -32
  47. data/test/format.rb +38 -33
  48. data/test/integration.rb +627 -598
  49. data/test/row.rb +5 -3
  50. data/test/suite.rb +7 -7
  51. data/test/workbook.rb +15 -14
  52. data/test/workbook_protection.rb +5 -5
  53. data/test/worksheet.rb +36 -34
  54. metadata +50 -8
@@ -1 +1 @@
1
- require 'spreadsheet/excel/writer/workbook'
1
+ require "spreadsheet/excel/writer/workbook"
@@ -1,4 +1,4 @@
1
- require 'spreadsheet'
1
+ require "spreadsheet"
2
2
 
3
3
  ##
4
4
  # Spreadsheet::Excel Compatibility Layer.
@@ -7,38 +7,42 @@ module Spreadsheet
7
7
  module Excel
8
8
  class ExcelCompatibleWorkbook < Workbook
9
9
  def initialize file_path, *args
10
- super *args
10
+ super(*args)
11
11
  @file_path = file_path
12
12
  end
13
+
13
14
  def close
14
15
  write @file_path
15
16
  end
16
17
  end
17
- def Excel.new file_path
18
+
19
+ def self.new file_path
18
20
  ExcelCompatibleWorkbook.new file_path
19
21
  end
22
+
20
23
  class Workbook
21
24
  def add_worksheet name
22
25
  if name.is_a? String
23
- create_worksheet :name => name
26
+ create_worksheet name: name
24
27
  else
25
28
  super
26
29
  end
27
30
  end
28
31
  end
29
32
  end
33
+
30
34
  class Worksheet
31
35
  unless instance_methods.include? "new_format_column"
32
- alias :new_format_column :format_column
33
- def format_column column, width=nil, format=nil
36
+ alias_method :new_format_column, :format_column
37
+ def format_column column, width = nil, format = nil
34
38
  if width.is_a? Format
35
39
  new_format_column column, width, format
36
40
  else
37
- new_format_column column, format, :width => width
41
+ new_format_column column, format, width: width
38
42
  end
39
43
  end
40
44
  end
41
- def write row, col, data=nil, format=nil
45
+ def write row, col, data = nil, format = nil
42
46
  if data.is_a? Array
43
47
  write_row row, col, data, format
44
48
  else
@@ -47,7 +51,8 @@ module Spreadsheet
47
51
  row.set_format col, format
48
52
  end
49
53
  end
50
- def write_column row, col, data=nil, format=nil
54
+
55
+ def write_column row, col, data = nil, format = nil
51
56
  if data.is_a? Array
52
57
  data.each do |token|
53
58
  if token.is_a? Array
@@ -61,7 +66,8 @@ module Spreadsheet
61
66
  write row, col, data, format
62
67
  end
63
68
  end
64
- def write_row row, col, data=nil, format=nil
69
+
70
+ def write_row row, col, data = nil, format = nil
65
71
  if data.is_a? Array
66
72
  data.each do |token|
67
73
  if token.is_a? Array
@@ -75,7 +81,8 @@ module Spreadsheet
75
81
  write row, col, data, format
76
82
  end
77
83
  end
78
- def write_url row, col, url, string=url, format=nil
84
+
85
+ def write_url row, col, url, string = url, format = nil
79
86
  row(row)[col] = Link.new url, string
80
87
  end
81
88
  end
@@ -1,6 +1,5 @@
1
- # encoding: utf-8
2
- require 'spreadsheet/datatypes'
3
- require 'spreadsheet/encodings'
1
+ require "spreadsheet/datatypes"
2
+ require "spreadsheet/encodings"
4
3
 
5
4
  module Spreadsheet
6
5
  ##
@@ -27,14 +26,14 @@ module Spreadsheet
27
26
  # :bold => 700
28
27
  # :normal => 400
29
28
  # Default: :normal
30
- enum :weight, :normal, :bold, Integer, :bold => :b
29
+ enum :weight, :normal, :bold, Integer, bold: :b
31
30
  ##
32
31
  # Escapement
33
32
  # Valid values: :normal, :superscript or :subscript.
34
33
  # Default: :normal
35
34
  enum :escapement, :normal, :superscript, :subscript,
36
- :subscript => :sub,
37
- :superscript => :super
35
+ subscript: :sub,
36
+ superscript: :super
38
37
  # Font size
39
38
  # Valid values: Any positive Integer.
40
39
  # Default: 10
@@ -44,8 +43,8 @@ module Spreadsheet
44
43
  # :double_accounting.
45
44
  # Default: :none
46
45
  enum :underline, :none, :single, :double,
47
- :single_accounting, :double_accounting,
48
- :single => true
46
+ :single_accounting, :double_accounting,
47
+ single: true
49
48
  # Font Family
50
49
  # Valid values: :none, :roman, :swiss, :modern, :script, :decorative
51
50
  # Default: :none
@@ -57,11 +56,11 @@ module Spreadsheet
57
56
  # :hebrew, :arabic, :cyrillic, :thai, :iso_latin2, :oem_latin1
58
57
  # Default: :default
59
58
  enum :encoding, :default, :iso_latin1, :symbol, :apple_roman, :shift_jis,
60
- :korean_hangul, :korean_johab, :chinese_simplified,
61
- :chinese_traditional, :greek, :turkish, :vietnamese,
62
- :hebrew, :arabic, :baltic, :cyrillic, :thai, :iso_latin2,
63
- :oem_latin1
64
- def initialize name, opts={}
59
+ :korean_hangul, :korean_johab, :chinese_simplified,
60
+ :chinese_traditional, :greek, :turkish, :vietnamese,
61
+ :hebrew, :arabic, :baltic, :cyrillic, :thai, :iso_latin2,
62
+ :oem_latin1
63
+ def initialize name, opts = {}
65
64
  self.name = name
66
65
  @color = :text
67
66
  @previous_fast_key = nil
@@ -76,38 +75,43 @@ module Spreadsheet
76
75
  @family = nil
77
76
  @encoding = nil
78
77
  opts.each do |key, val|
79
- self.send "#{key}=", val
78
+ send :"#{key}=", val
80
79
  end
81
80
  end
81
+
82
82
  ##
83
83
  # Sets #weight to :bold if(_bool_), :normal otherwise.
84
84
  def bold= bool
85
85
  self.weight = bool ? :bold : nil
86
86
  end
87
+
87
88
  def key # :nodoc:
88
89
  fk = fast_key
89
90
  return @key if @previous_fast_key == fk
90
91
  @previous_fast_key = fk
91
92
  @key = build_key
92
93
  end
94
+
93
95
  private
96
+
94
97
  def build_key # :nodoc:
95
- underscore = client('_', 'UTF-8')
98
+ underscore = client("_", "UTF-8")
96
99
  key = []
97
100
  key << @name
98
- key << underscore << client(size.to_s, 'US-ASCII')
99
- key << underscore << client(weight.to_s, 'US-ASCII')
100
- key << client('_italic', 'UTF-8') if italic?
101
- key << client('_strikeout', 'UTF-8') if strikeout?
102
- key << client('_outline', 'UTF-8') if outline?
103
- key << client('_shadow', 'UTF-8') if shadow?
104
- key << underscore << client(escapement.to_s, 'US-ASCII')
105
- key << underscore << client(underline.to_s, 'US-ASCII')
106
- key << underscore << client(color.to_s, 'US-ASCII')
107
- key << underscore << client(family.to_s, 'US-ASCII')
108
- key << underscore << client(encoding.to_s, 'US-ASCII')
101
+ key << underscore << client(size.to_s, "US-ASCII")
102
+ key << underscore << client(weight.to_s, "US-ASCII")
103
+ key << client("_italic", "UTF-8") if italic?
104
+ key << client("_strikeout", "UTF-8") if strikeout?
105
+ key << client("_outline", "UTF-8") if outline?
106
+ key << client("_shadow", "UTF-8") if shadow?
107
+ key << underscore << client(escapement.to_s, "US-ASCII")
108
+ key << underscore << client(underline.to_s, "US-ASCII")
109
+ key << underscore << client(color.to_s, "US-ASCII")
110
+ key << underscore << client(family.to_s, "US-ASCII")
111
+ key << underscore << client(encoding.to_s, "US-ASCII")
109
112
  key.join("")
110
113
  end
114
+
111
115
  def fast_key
112
116
  [@name, @size, @weight, @italic, @strikeout, @outline, @shadow, @escapement, @underline, @color, @family, @encoding]
113
117
  end
@@ -1,7 +1,6 @@
1
- # encoding: utf-8
2
- require 'spreadsheet/datatypes'
3
- require 'spreadsheet/encodings'
4
- require 'spreadsheet/font'
1
+ require "spreadsheet/datatypes"
2
+ require "spreadsheet/encodings"
3
+ require "spreadsheet/font"
5
4
 
6
5
  module Spreadsheet
7
6
  ##
@@ -29,84 +28,84 @@ module Spreadsheet
29
28
  # other. Excel will ignore other rotation values if
30
29
  # this is set.
31
30
  boolean :cross_down, :cross_up, :hidden, :locked,
32
- :merge_range, :shrink, :text_justlast, :text_wrap,
33
- :rotation_stacked
31
+ :merge_range, :shrink, :text_justlast, :text_wrap,
32
+ :rotation_stacked
34
33
  ##
35
34
  # Border line styles
36
- # Valid values: :none, :thin, :medium, :dashed, :dotted, :thick,
37
- # :double, :hair, :medium_dashed, :thin_dash_dotted,
38
- # :medium_dash_dotted, :thin_dash_dot_dotted,
39
- # :medium_dash_dot_dotted, :slanted_medium_dash_dotted
35
+ # Valid values: :none, :thin, :medium, :dashed, :dotted, :thick,
36
+ # :double, :hair, :medium_dashed, :thin_dash_dotted,
37
+ # :medium_dash_dotted, :thin_dash_dot_dotted,
38
+ # :medium_dash_dot_dotted, :slanted_medium_dash_dotted
40
39
  # Default: :none
41
- styles = [ :thin, :medium, :dashed, :dotted, :thick,
42
- :double, :hair, :medium_dashed, :thin_dash_dotted,
43
- :medium_dash_dotted, :thin_dash_dot_dotted,
44
- :medium_dash_dot_dotted, :slanted_medium_dash_dotted ]
45
- enum :left, :none, *styles
46
- enum :right, :none, *styles
47
- enum :top, :none, *styles
48
- enum :bottom, :none, *styles
40
+ styles = [:thin, :medium, :dashed, :dotted, :thick,
41
+ :double, :hair, :medium_dashed, :thin_dash_dotted,
42
+ :medium_dash_dotted, :thin_dash_dot_dotted,
43
+ :medium_dash_dot_dotted, :slanted_medium_dash_dotted]
44
+ enum :left, :none, *styles
45
+ enum :right, :none, *styles
46
+ enum :top, :none, *styles
47
+ enum :bottom, :none, *styles
49
48
 
50
49
  ##
51
50
  # Color attributes
52
- colors :bottom_color, :top_color, :left_color, :right_color,
53
- :pattern_fg_color, :pattern_bg_color,
54
- :diagonal_color
51
+ colors :bottom_color, :top_color, :left_color, :right_color,
52
+ :pattern_fg_color, :pattern_bg_color,
53
+ :diagonal_color
55
54
  ##
56
55
  # Text direction
57
56
  # Valid values: :context, :left_to_right, :right_to_left
58
57
  # Default: :context
59
58
  enum :text_direction, :context, :left_to_right, :right_to_left,
60
- :left_to_right => [:ltr, :l2r],
61
- :right_to_left => [:rtl, :r2l]
62
- alias :reading_order :text_direction
63
- alias :reading_order= :text_direction=
59
+ left_to_right: [:ltr, :l2r],
60
+ right_to_left: [:rtl, :r2l]
61
+ alias_method :reading_order, :text_direction
62
+ alias_method :reading_order=, :text_direction=
64
63
  ##
65
64
  # Indentation level
66
65
  enum :indent_level, 0, Integer
67
- alias :indent :indent_level
68
- alias :indent= :indent_level=
66
+ alias_method :indent, :indent_level
67
+ alias_method :indent=, :indent_level=
69
68
  ##
70
69
  # Horizontal alignment
71
70
  # Valid values: :default, :left, :center, :right, :fill, :justify, :merge,
72
71
  # :distributed
73
72
  # Default: :default
74
73
  enum :horizontal_align, :default, :left, :center, :right, :fill, :justify,
75
- :merge, :distributed,
76
- :center => :centre,
77
- :merge => [ :center_across, :centre_across ],
78
- :distributed => :equal_space
74
+ :merge, :distributed,
75
+ center: :centre,
76
+ merge: [:center_across, :centre_across],
77
+ distributed: :equal_space
79
78
  ##
80
79
  # Vertical alignment
81
80
  # Valid values: :bottom, :top, :middle, :justify, :distributed
82
81
  # Default: :bottom
83
82
  enum :vertical_align, :bottom, :top, :middle, :justify, :distributed,
84
- :distributed => [:vdistributed, :vequal_space, :equal_space],
85
- :justify => :vjustify,
86
- :middle => [:vcenter, :vcentre, :center, :centre]
83
+ distributed: [:vdistributed, :vequal_space, :equal_space],
84
+ justify: :vjustify,
85
+ middle: [:vcenter, :vcentre, :center, :centre]
87
86
  attr_accessor :font, :number_format, :name, :pattern, :used_merge
88
87
  ##
89
88
  # Text rotation
90
89
  attr_reader :rotation
91
- def initialize opts={}
92
- @font = Font.new client("Arial", 'UTF-8'), :family => :swiss
93
- @number_format = client 'GENERAL', 'UTF-8'
94
- @rotation = 0
95
- @pattern = 0
96
- @bottom_color = :black
97
- @top_color = :black
98
- @left_color = :black
99
- @right_color = :black
100
- @diagonal_color = :black
90
+ def initialize opts = {}
91
+ @font = Font.new client("Arial", "UTF-8"), family: :swiss
92
+ @number_format = client "GENERAL", "UTF-8"
93
+ @rotation = 0
94
+ @pattern = 0
95
+ @bottom_color = :black
96
+ @top_color = :black
97
+ @left_color = :black
98
+ @right_color = :black
99
+ @diagonal_color = :black
101
100
  @pattern_fg_color = :border
102
101
  @pattern_bg_color = :pattern_bg
103
102
  @regexes = {
104
- :date => Regexp.new(client("[YMD]|d{2}|m{3}|y{2}", 'UTF-8')),
105
- :date_or_time => Regexp.new(client("[hmsYMD]", 'UTF-8')),
106
- :datetime => Regexp.new(client("([YMD].*[HS])|([HS].*[YMD])", 'UTF-8')),
107
- :time => Regexp.new(client("[hms]", 'UTF-8')),
108
- :number => Regexp.new(client("([\#]|0+)", 'UTF-8')),
109
- :locale => Regexp.new(client(/\A\[\$\-\S+\]/.to_s, 'UTF-8')),
103
+ date: Regexp.new(client("[YMD]|d{2}|m{3}|y{2}", "UTF-8")),
104
+ date_or_time: Regexp.new(client("[hmsYMD]", "UTF-8")),
105
+ datetime: Regexp.new(client("([YMD].*[HS])|([HS].*[YMD])", "UTF-8")),
106
+ time: Regexp.new(client("[hms]", "UTF-8")),
107
+ number: Regexp.new(client("([#]|0+)", "UTF-8")),
108
+ locale: Regexp.new(client(/\A\[\$-\S+\]/.to_s, "UTF-8"))
110
109
  }
111
110
 
112
111
  # Temp code to prevent merged formats in non-merged cells.
@@ -119,7 +118,7 @@ module Spreadsheet
119
118
  def update_format(opts = {})
120
119
  opts.each do |attribute, value|
121
120
  writer = "#{attribute}="
122
- @font.respond_to?(writer) ? @font.send(writer,value) : self.send(writer, value)
121
+ @font.respond_to?(writer) ? @font.send(writer, value) : send(writer, value)
123
122
  end
124
123
  self
125
124
  end
@@ -135,83 +134,99 @@ module Spreadsheet
135
134
  def align= location
136
135
  self.horizontal_align = location
137
136
  rescue ArgumentError
138
- self.vertical_align = location rescue ArgumentError
137
+ self.vertical_align = begin
138
+ location
139
+ rescue
140
+ ArgumentError
141
+ end
139
142
  end
143
+
140
144
  ##
141
145
  # Returns an Array containing the line styles of the four borders:
142
146
  # bottom, top, right, left
143
147
  def border
144
148
  [bottom, top, right, left]
145
149
  end
150
+
146
151
  ##
147
152
  # Set same line style on all four borders at once (left, right, top, bottom)
148
153
  def border=(style)
149
- [:bottom=, :top=, :right=, :left=].each do |writer| send writer, style end
154
+ [:bottom=, :top=, :right=, :left=].each { |writer| send writer, style }
150
155
  end
156
+
151
157
  ##
152
158
  # Returns an Array containing the colors of the four borders:
153
159
  # bottom, top, right, left
154
160
  def border_color
155
- [@bottom_color,@top_color,@right_color,@left_color]
161
+ [@bottom_color, @top_color, @right_color, @left_color]
156
162
  end
163
+
157
164
  ##
158
165
  # Set all four border colors to _color_ (left, right, top, bottom)
159
166
  def border_color=(color)
160
167
  [:bottom_color=, :top_color=, :right_color=, :left_color=].each do |writer|
161
- send writer, color end
168
+ send writer, color
169
+ end
162
170
  end
171
+
163
172
  ##
164
173
  # Set the Text rotation
165
174
  # Valid values: Integers from -90 to 90,
166
175
  # or :stacked (sets #rotation_stacked to true)
167
176
  def rotation=(rot)
168
- if rot.to_s.downcase == 'stacked'
177
+ if rot.to_s.downcase == "stacked"
169
178
  @rotation_stacked = true
170
179
  @rotation = 0
171
- elsif rot.kind_of?(Integer)
180
+ elsif rot.is_a?(Integer)
172
181
  @rotation_stacked = false
173
182
  @rotation = rot % 360
174
183
  else
175
184
  raise TypeError, "rotation value must be an Integer or the String 'stacked'"
176
185
  end
177
186
  end
187
+
178
188
  ##
179
189
  # Backward compatibility method. May disappear at some point in the future.
180
190
  def center_across!
181
191
  self.horizontal_align = :merge
182
192
  end
183
- alias :merge! :center_across!
193
+ alias_method :merge!, :center_across!
184
194
  ##
185
195
  # Is the cell formatted as a Date?
186
196
  def date?
187
197
  !number? && matches_format?(:date)
188
198
  end
199
+
189
200
  ##
190
201
  # Is the cell formatted as a Date or Time?
191
202
  def date_or_time?
192
203
  !number? && matches_format?(:date_or_time)
193
204
  end
205
+
194
206
  ##
195
207
  # Is the cell formatted as a DateTime?
196
208
  def datetime?
197
209
  !number? && matches_format?(:datetime)
198
210
  end
211
+
199
212
  ##
200
213
  # Is the cell formatted as a Time?
201
214
  def time?
202
215
  !number? && matches_format?(:time)
203
216
  end
217
+
204
218
  ##
205
219
  # Is the cell formatted as a number?
206
220
  def number?
207
221
  matches_format?(:number)
208
222
  end
223
+
209
224
  ##
210
225
  # Does the cell match a particular preset format?
211
226
  def matches_format?(name)
212
227
  # Excel number formats may optionally include a locale identifier like this:
213
228
  # [$-409]
214
- format = @number_format.to_s.sub(@regexes[:locale], '')
229
+ format = @number_format.to_s.sub(@regexes[:locale], "")
215
230
  !!@regexes[name].match(format)
216
231
  end
217
232
  end
@@ -1,5 +1,5 @@
1
- require 'uri'
2
- require 'spreadsheet/encodings'
1
+ require "uri"
2
+ require "spreadsheet/encodings"
3
3
 
4
4
  module Spreadsheet
5
5
  ##
@@ -20,20 +20,22 @@ module Spreadsheet
20
20
  class Link < String
21
21
  include Encodings
22
22
  attr_accessor :target_frame, :url, :dos, :fragment
23
- def initialize url='', description=url, fragment=nil
24
- super description
23
+ def initialize url = "", description = url, fragment = nil
24
+ super(description)
25
25
  @url = url
26
26
  @fragment = fragment
27
27
  end
28
+
28
29
  ##
29
30
  # The Url with the fragment appended if present.
30
31
  def href
31
32
  href = (@url || @dos).to_s.dup
32
33
  if @fragment
33
- href << client('#', 'UTF-8') << @fragment
34
+ href << client("#", "UTF-8") << @fragment
34
35
  end
35
36
  href
36
37
  end
38
+
37
39
  ##
38
40
  # Attempts to parse the output of href. May raise a URI::InvalidURIError
39
41
  def to_uri
@@ -1,4 +1,4 @@
1
- require 'spreadsheet/encodings'
1
+ require "spreadsheet/encodings"
2
2
 
3
3
  module Spreadsheet
4
4
  ##
@@ -10,14 +10,14 @@ module Spreadsheet
10
10
  # #author :: The name of the author who wrote the note
11
11
  class Note
12
12
  include Encodings
13
- attr_accessor :author, :length, :objID, :row, :col, :text
13
+ attr_accessor :author, :length, :obj_id, :row, :col, :text
14
14
  def initialize
15
15
  @author = nil
16
16
  @length = 0
17
- @objID = nil
18
- @row = -1
19
- @col = -1
20
- @text = ""
17
+ @obj_id = nil
18
+ @row = -1
19
+ @col = -1
20
+ @text = ""
21
21
  end
22
22
  end
23
23
  end
@@ -1,17 +1,17 @@
1
- require 'spreadsheet/encodings'
1
+ require "spreadsheet/encodings"
2
2
 
3
3
  module Spreadsheet
4
4
  ##
5
- # The NoteObject class is made to handle the text output from the
5
+ # The NoteObject class is made to handle the text output from the
6
6
  # object, txo, continue records which contain a comment's text record.
7
7
  #
8
8
  #
9
9
  class NoteObject
10
10
  include Encodings
11
- attr_accessor :objID, :text
11
+ attr_accessor :obj_id, :text
12
12
  def initialize
13
- @objID = -1
14
- @text = ""
13
+ @obj_id = -1
14
+ @text = ""
15
15
  end
16
16
  end
17
17
  end