Class: BmmlExporters::BmmlHtmlExporter::HtmlStyle

Inherits:
Hash
  • Object
show all
Defined in:
lib/bmmlhtmlexporter.rb

Instance Method Summary collapse

Instance Method Details

#to_sObject



23
24
25
26
27
28
29
# File 'lib/bmmlhtmlexporter.rb', line 23

def to_s
	s = ""
	each { |key,value|
		s << key+": "+value+";"
	}
	s
end