Class: Axlsx::Core

Inherits:
Object
  • Object
show all
Defined in:
lib/axlsx/doc_props/core.rb

Overview

Note:

Packages manage their own core object.

The core object for the package.

See Also:

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Core

Creates a new Core object.

Parameters:

  • options (Hash) (defaults to: {})

    a customizable set of options

Options Hash (options):

  • creator (String)


13
14
15
# File 'lib/axlsx/doc_props/core.rb', line 13

def initialize(options={})
  @creator = options[:creator] || 'axlsx'
end

Instance Attribute Details

#creatorString

The author of the document. By default this is ‘axlsx’

Returns:

  • (String)


9
10
11
# File 'lib/axlsx/doc_props/core.rb', line 9

def creator
  @creator
end

Instance Method Details

#to_xml_string(str = '') ⇒ String

serializes the core.xml document

Returns:

  • (String)


19
20
21
22
23
24
25
26
27
28
# File 'lib/axlsx/doc_props/core.rb', line 19

def to_xml_string(str = '')
  str << '<?xml version="1.0" encoding="UTF-8"?>'
  str << '<cp:coreProperties xmlns:cp="' << CORE_NS << '" xmlns:dc="' << CORE_NS_DC << '" '
  str << 'xmlns:dcmitype="' << CORE_NS_DCMIT << '" xmlns:dcterms="' << CORE_NS_DCT << '" '
  str << 'xmlns:xsi="' << CORE_NS_XSI << '">'
  str << '<dc:creator>' << self.creator << '</dc:creator>'
  str << '<dcterms:created xsi:type="dcterms:W3CDTF">' << Time.now.strftime('%Y-%m-%dT%H:%M:%S') << '</dcterms:created>'
  str << '<cp:revision>0</cp:revision>'
  str << '</cp:coreProperties>'
end