|
MoneyTrackin
Sample Usage, Known issues & Dependencies.
Featured IntroductionA Ruby client for MoneyTrackin's REST api. Documentation of the api can be found at http://help.moneytrackin.com/index.php/REST_API Sample usagemt = MoneyTracking::MoneyTrackin.new( MoneyTracking::HttpAuth.new(username, password) )
#list the currencies supported by MoneyTrackin
mt.currencies.each { |c| puts "Currency: " + c.name + "\tid " + c.id }
#The main account's id is an empty string
accounts = mt.get_accounts()
accounts.each { |a| puts "Account\t" + a.id + "\tName: " + a.name + " Balance: " + a.balance.to_s}
Known Issues
Todo
Dependencies
|
► Sign in to add a comment