module Workbook

frozen_string_literal: true

frozen_string_literal: true

frozen_string_literal: true

frozen_string_literal: true

frozen_string_literal: true

frozen_string_literal: true

frozen_string_literal: true

frozen_string_literal: true

frozen_string_literal: true

frozen_string_literal: true

Constants

SUPPORTED_MIME_TYPES

The Book class is the container of sheets. It can be inialized by either the standard initalizer or the open method. The Book class can also keep a reference to a template class, storing shared formatting options.

VERSION

Public Class Methods

caching_enabled?() click to toggle source
# File lib/workbook.rb, line 21
def caching_enabled?
  @@caching_enabled ||= true
end
disable_caching!() click to toggle source

Disable caching globally (wherever applicable)

# File lib/workbook.rb, line 25
def disable_caching!
  @@caching_enabled = false
end
enable_caching!() click to toggle source

Enable caching globally (wherever applicable)

# File lib/workbook.rb, line 29
def enable_caching!
  @@caching_enabled = true
end