class MoneyExchange::Bank

Public Class Methods

new(opts = {}, &blk) click to toggle source
Calls superclass method
# File lib/money_exchange/bank.rb, line 5
def initialize(opts = {}, &blk)
  super(MoneyExchange::Store.new(opts), &blk)
end