No release in over 3 years
Low commit activity in last 3 years
This is a quick'n'dirty gem to parse Quicken QFX format.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

>= 0
 Project Readme
= QuickenParser

This is a quick'n'dirty gem to parse Quicken QFX format.

Given an input stream, or a file, this library will return Ruby structures
representing the transactions, accounts and credit cards contained in the
file / stream.

== Example

 accounts = QuickenParser.parse(STDIN)
 accounts.length #=> 3
 account = accounts.first
 #=> <QuickenParser::Account ...>
 account.number     #=> "123456789012"
 account.currency   #=> "CAD"
 account.bank_id    #=> "900000100"
 account.transactions.length #=> 97
 account.transactions.timespan #=> Sun Aug 31, 2008..Sat Sep 13
 account.transactions.each do |transaction|
   transaction.type       #=> "DEBIT"
   transaction.amount     #=> <Money @cents=13209, @currency="CAD">
   transaction.timestamp  #=> Sun Aug 31, 2008 08:15 AM
   transaction.name       #=> "..."
   transaction.memo       #=> "..."
   transaction.id         #=> "932374"
 end