module Representable::JSON
Public Class Methods
included(base)
click to toggle source
# File lib/representable/json.rb, line 16 def self.included(base) base.class_eval do include Representable # either in Hero or HeroRepresentation. extend ClassMethods # DISCUSS: do that only for classes? register_feature Representable::JSON end end