class TrustyCms::ResourceResponses::Response

def method_missing(method, *args, &block)

def method_missing(method, *args, &block)
  if block_given?
    @blocks[method] = block
    @block_order << method unless @block_order.include?(method)
  elsif args.empty?
    @block_order << method
  else
    super
  end
end