Sha256: 7df16e6d187d9475d29bba6f38a397086e73bae96035b5f77b4dce632899f2b9
Contents?: true
Size: 298 Bytes
Versions: 2
Compression:
Stored size: 298 Bytes
Contents
module RockRMS class Client module Fund def list_funds(options={}) res = get(fund_path, options) RockRMS::Fund.format(res) end private def fund_path(id = nil) id ? "FinancialAccounts/#{id}" : "FinancialAccounts" end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rock_rms-0.0.2 | lib/rock_rms/resources/fund.rb |
rock_rms-0.0.1 | lib/rock_rms/resources/fund.rb |