class Money

Public Instance Methods

exchange_to(to_currency, date = nil) click to toggle source
# File lib/money/bank/tcmb_currency.rb, line 8
def exchange_to(to_currency, date = nil)
  bank = Bank::TcmbCurrency.new
  bank.exchange_with!(self, to_currency, date)
end