Class: Axie::Object

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

Direct Known Subclasses

Account

Instance Method Summary collapse

Constructor Details

#initialize(attributes) ⇒ Object

Returns a new instance of Object.



5
6
7
# File 'lib/axie/object.rb', line 5

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



9
10
11
12
# File 'lib/axie/object.rb', line 9

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)


14
15
16
# File 'lib/axie/object.rb', line 14

def respond_to_missing?(method, include_private = false)
  true
end