Method: Convertator::Converter#ratio

Defined in:
lib/convertator/converter.rb

#ratio(currency_from, currency_to) ⇒ Object



37
38
39
# File 'lib/convertator/converter.rb', line 37

def ratio(currency_from, currency_to)
  round(rate(currency_from) / rate(currency_to))
end