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



68
69
70
71
72
73
74
# File 'lib/teepee.rb', line 68

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