class OpenStruct

Public Instance Methods

[](key) click to toggle source
# File lib/asciidoctor-pdf/core_ext/ostruct.rb, line 2
def [] key
  send key
end
[]=(key, val) click to toggle source
# File lib/asciidoctor-pdf/core_ext/ostruct.rb, line 6
def []= key, val
  send %Q(#{key}=), val
end