9 10 11 12
# File 'lib/chess_api/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