Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
activeadmin / spec / support / templates / post_decorator.rb
Size: Mime:
require 'draper'

class PostDecorator < Draper::Decorator
  decorates :post
  delegate_all

  def decorator_method
    'A method only available on the decorator'
  end
end