Method: IML::Text#initialize

Defined in:
lib/iml/text.rb

#initialize(string = nil, options = {}) ⇒ Text

Returns a new instance of Text.



7
8
9
10
# File 'lib/iml/text.rb', line 7

def initialize(string = nil, options = {})
  @options = options
  super(string.to_s)
end