lib/fmrest/spyke/model.rb in fmrest-0.1.0 vs lib/fmrest/spyke/model.rb in fmrest-0.2.0

- old
+ new

@@ -1,22 +1,29 @@ +# frozen_string_literal: true + require "fmrest/spyke/model/connection" require "fmrest/spyke/model/uri" require "fmrest/spyke/model/attributes" +require "fmrest/spyke/model/serialization" require "fmrest/spyke/model/associations" require "fmrest/spyke/model/orm" +require "fmrest/spyke/model/container_fields" module FmRest module Spyke module Model extend ::ActiveSupport::Concern include Connection include Uri include Attributes + include Serialization include Associations include Orm + include ContainerFields included do + # @return [Integer] the record's modId attr_accessor :mod_id end end end end