lib/axlsx/workbook/workbook.rb in axlsx-1.1.7 vs lib/axlsx/workbook/workbook.rb in axlsx-1.1.8
- old
+ new
@@ -1,9 +1,10 @@
# -*- coding: utf-8 -*-
module Axlsx
require 'axlsx/workbook/worksheet/date_time_converter.rb'
+require 'axlsx/workbook/worksheet/protected_range.rb'
require 'axlsx/workbook/worksheet/cell.rb'
require 'axlsx/workbook/worksheet/page_margins.rb'
require 'axlsx/workbook/worksheet/page_setup.rb'
require 'axlsx/workbook/worksheet/print_options.rb'
require 'axlsx/workbook/worksheet/cfvo.rb'
@@ -98,11 +99,10 @@
# @see Worksheet#add_table
# @see Table
# @return [SimpleTypedList]
attr_reader :tables
-
# A colllection of comments associated with this workbook
# @note The recommended way to manage comments is Worksheet#add_comment
# @see Worksheet#add_comment
# @see Comment
# @return [Comments]
@@ -141,10 +141,9 @@
@styles = Styles.new
@worksheets = SimpleTypedList.new Worksheet
@drawings = SimpleTypedList.new Drawing
@charts = SimpleTypedList.new Chart
@images = SimpleTypedList.new Pic
-
# Are these even used????? Check package serialization parts
@tables = SimpleTypedList.new Table
@comments = SimpleTypedList.new Comments