module Billit::BillRepresenter

Public Class Methods

included(klass) click to toggle source
# File lib/billit_representers/representers/bill_representer.rb, line 23
def self.included(klass)
  klass.send :prepend, Initializer
  klass.send :include, ActiveModel::Validations
  klass.send :include, Roar::Representer::Feature::HttpVerbs
end