class HashPresenter
Public Instance Methods
each() { |present, present| ... }
click to toggle source
Calls superclass method
# File lib/mystique/presenters/hash_presenter.rb, line 2 def each super do |key, value| yield(Mystique.present(key), Mystique.present(value)) end end