Sha256: a8c717d438a3c32e3e4c8af3560357eb54d4d65e0449d496f753f39ba7a8deec
Contents?: true
Size: 1.01 KB
Versions: 3
Compression:
Stored size: 1.01 KB
Contents
<% module_namespacing do -%> class <%= class_name %>Decorator < <%= parent_class_name %> # Accessing Helpers # You can access any helper via a proxy # # Normal Usage: helpers.number_to_currency(2) # Abbreviated : h.number_to_currency(2) # # Or, optionally enable "lazy helpers" by including this module: # include Draper::LazyHelpers # Then use the helpers with no proxy: # number_to_currency(2) # Defining an Interface # Control access to the wrapped subject's methods using one of the following: # # To allow only the listed methods (whitelist): # allows :method1, :method2 # # To allow everything except the listed methods (blacklist): # denies :method1, :method2 # Presentation Methods # Define your own instance methods, even overriding accessors # generated by ActiveRecord: # # def created_at # h.content_tag :span, attributes["created_at"].strftime("%a %m/%d/%y"), # :class => 'timestamp' # end end <% end -%>
Version data entries
3 entries across 3 versions & 2 rubygems