Class: Hash

Inherits:
Object
  • Object
show all
Defined in:
lib/sinatra/formhelpers.rb

Instance Method Summary collapse

Instance Method Details

#to_html_attrsObject



96
97
98
99
100
101
102
# File 'lib/sinatra/formhelpers.rb', line 96

def to_html_attrs
  html_attrs = ""
  self.stringify_keys.each do |key, val|
    html_attrs << "#{key}='#{val}' "
  end
  html_attrs.chop
end