module OpenGraphReader::Object

This module provides the base functionality for all OpenGraph objects and makes the {DSL} methods for describing them available when included.

@example Define a new object

class MyObject
  include OpenGraphReader::Object

   namespace :my, :object
   content :string
   string :name, required: true
end