Sha256: feeff51e69c416ed1bad3e65e49aeee80f8c63de74a583590928c313318b6835

Contents?: true

Size: 346 Bytes

Versions: 5

Compression:

Stored size: 346 Bytes

Contents

##
# NPR::Entity::Base
#
# Class for all NPR Objects to inherit from
#
module NPR
  module Entity
    class Base
      include NPR::Concern::Relation
      include NPR::Concern::ShallowAttributes

      #-----------------
      # Override this
      def initialize(json={})
        @_json = json
      end
    end # Base
  end # Entity
end # NPR

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
npr-3.0.0 lib/npr/entity/base.rb
npr-2.0.2 lib/npr/entity/base.rb
npr-2.0.1 lib/npr/entity/base.rb
npr-2.0.0 lib/npr/entity/base.rb
npr-1.2.0 lib/npr/entity/base.rb