Class: Bitstamp::Model

Inherits:
Object
  • Object
show all
Extended by:
ActiveModel::Naming
Includes:
ActiveModel::Conversion, ActiveModel::Model, ActiveModel::Validations
Defined in:
lib/bitstamp/model.rb

Direct Known Subclasses

Order, Ticker

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ Model

Returns a new instance of Model.



8
9
10
# File 'lib/bitstamp/model.rb', line 8

def initialize(attributes = {})
  self.attributes = attributes
end

Instance Method Details

#attributesObject

Returns a hash with the current instance variables



23
24
25
# File 'lib/bitstamp/model.rb', line 23

def attributes
  Hash[instance_variables.map { |name| [name, instance_variable_get(name)] }]
end

#attributes=(attributes = {}) ⇒ Object

Set the attributes based on the given hash



16
17
18
19
20
# File 'lib/bitstamp/model.rb', line 16

def attributes=(attributes = {})
  attributes.each do |name, value|
    send("#{name}=", value)
  end
end