lib/representable/json/hash.rb in representable-1.2.3 vs lib/representable/json/hash.rb in representable-1.2.4

- old
+ new

@@ -2,26 +2,26 @@ module Representable::JSON module Hash include Representable::JSON include HashMethods - + def self.included(base) base.class_eval do include Representable extend ClassMethods end end - - + + module ClassMethods def values(options) hash :_self, options end end - - + + def definition_opts - [:_self, :hash => true, :use_attributes => true] + [:_self, {:hash => true, :use_attributes => true}] end end end