Method: Excoin::API#multiple_exchange_summary

Defined in:
lib/excoin/api.rb

#multiple_exchange_summary(currency = nil) ⇒ Object

Exchange API



39
40
41
42
43
44
45
# File 'lib/excoin/api.rb', line 39

def multiple_exchange_summary(currency = nil)
  unless currency
    self.get("summary")
  else
    self.get("summary/#{currency}")
  end
end