Class: JsonApiClient::Schema

Inherits:
Object
  • Object
show all
Defined in:
lib/json_api_client/schema.rb

Defined Under Namespace

Classes: Property

Instance Method Summary collapse

Constructor Details

#initializeSchema

Returns a new instance of Schema.



27
28
29
# File 'lib/json_api_client/schema.rb', line 27

def initialize
  @properties = {}
end

Instance Method Details

#add(name, options) ⇒ void

This method returns an undefined value.

Add a property to the schema

Parameters:

  • name (Symbol)

    the name of the property

  • options (Hash)

    property options

Options Hash (options):

  • :type (Symbol)

    The property type

  • :default (Symbol)

    The default value for the property



38
39
40
# File 'lib/json_api_client/schema.rb', line 38

def add(name, options)
  @properties[name.to_sym] = Property.new(name.to_sym, options[:type], options[:default])
end

#each_property(&block) ⇒ Object Also known as: each



50
51
52
# File 'lib/json_api_client/schema.rb', line 50

def each_property(&block)
  @properties.values.each(&block)
end

#find(property_name) ⇒ Property? Also known as: []

Look up a property by name

Parameters:

  • property_name (String)

    the name of the property

Returns:

  • (Property, nil)

    the property definition for property_name or nil



59
60
61
# File 'lib/json_api_client/schema.rb', line 59

def find(property_name)
  @properties[property_name.to_sym]
end

#sizeFixnum Also known as: length

How many properties are defined

Returns:

  • (Fixnum)

    the number of defined properties



45
46
47
# File 'lib/json_api_client/schema.rb', line 45

def size
  @properties.size
end