Sha256: 41bdcf2a8f066fa402e2138abee293c99bfdaa63338be4aa05a1e236071e00d5
Contents?: true
Size: 978 Bytes
Versions: 1
Compression:
Stored size: 978 Bytes
Contents
module Draper # Provides the {#helpers} method used in {Decorator} and {CollectionDecorator} # to call the Rails helpers. module ViewHelpers extend ActiveSupport::Concern module ClassMethods # Access the helpers proxy to call built-in and user-defined # Rails helpers from a class context. # # @return [HelperProxy] the helpers proxy def helpers @helpers ||= Draper::HelperProxy.new end alias_method :h, :helpers end # Access the helpers proxy to call built-in and user-defined # Rails helpers. Aliased to `h` for convenience. # # @return [HelperProxy] the helpers proxy def helpers self.class.helpers end alias_method :h, :helpers # Alias for `helpers.localize`, since localize is something that's used # quite often. Further aliased to `l` for convenience. def localize(*args) helpers.localize(*args) end alias_method :l, :localize end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
draper-1.0.0 | lib/draper/view_helpers.rb |