module Gifted::Monkey::AbstractController::Rendering

Public Instance Methods

view_assigns() click to toggle source
Calls superclass method
# File lib/gifted/monkey/abstract_controller/rendering.rb, line 9
def view_assigns
  hash = super
  hash.each_value do |v|
    Gifted::Decorator.instance.decorate v
  end
  hash
end