lib/myfinance.rb in myfinance-0.3.0 vs lib/myfinance.rb in myfinance-0.3.1
- old
+ new
@@ -27,9 +27,9 @@
def self.configure
yield(configuration) if block_given?
end
- def self.client(token)
- Client.new(token)
+ def self.client(token, account_id = nil)
+ Client.new(token, account_id)
end
end