module Draper::LazyHelpers
Include this module in your decorators to get direct access to the helpers so that you can stop typing ‘h.` everywhere, at the cost of mixing in a bazillion methods.
Public Instance Methods
Source
# File lib/draper/lazy_helpers.rb, line 7 def method_missing(method, *args, &block) helpers.send(method, *args, &block) rescue NoMethodError super end
Calls superclass method