Class: Array
Instance Method Summary collapse
-
#to_hbs ⇒ Object
Serialize Array to Handlebarer format.
Instance Method Details
#to_hbs ⇒ Object
Serialize Array to Handlebarer format. Invoke ‘to_hbs` on array members
92 93 94 |
# File 'lib/handlebarer/serialize.rb', line 92 def to_hbs map {|a| a.respond_to?(:to_hbs) ? a.to_hbs : a } end |