Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/teepee.rb,
lib/teepee/string-token.rb

Instance Method Summary collapse

Instance Method Details

#to_htmlObject



41
42
43
# File 'lib/teepee/string-token.rb', line 41

def to_html
  self
end

#to_numberObject



59
60
61
62
63
64
65
# File 'lib/teepee.rb', line 59

def to_number
  begin
    Float(self)
  rescue ArgumentError
    ""
  end
end