Class: SmartRecruiters::Object

Inherits:
Object
  • Object
show all
Defined in:
lib/smartrecruiters/object.rb

Instance Method Summary collapse

Constructor Details

#initialize(attributes) ⇒ Object

Returns a new instance of Object.



7
8
9
# File 'lib/smartrecruiters/object.rb', line 7

def initialize(attributes)
  @attributes = OpenStruct.new(attributes)
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(method, *args, &block) ⇒ Object



11
12
13
14
# File 'lib/smartrecruiters/object.rb', line 11

def method_missing(method, *args, &block)
  attribute = @attributes.send(method, *args, &block)
  attribute.is_a?(Hash) ? Object.new(attribute) : attribute
end

Instance Method Details

#respond_to_missing?(_method, _include_private = false) ⇒ Boolean

Returns:

  • (Boolean)


16
17
18
# File 'lib/smartrecruiters/object.rb', line 16

def respond_to_missing?(_method, _include_private = false)
  true
end