qiflib 0.0.4alpha → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.rdoc +149 -0
- data/html/Qiflib/Category.html +377 -0
- data/html/Qiflib/Date.html +384 -0
- data/html/Qiflib/Money.html +308 -0
- data/html/Qiflib/Transaction.html +836 -0
- data/html/Qiflib/Util.html +625 -0
- data/html/Qiflib.html +320 -0
- data/html/README_rdoc.html +241 -0
- data/html/index.html +271 -0
- data/html/lib/qiflib_category_rb.html +52 -0
- data/html/lib/qiflib_constants_rb.html +52 -0
- data/html/lib/qiflib_date_rb.html +52 -0
- data/html/lib/qiflib_money_rb.html +52 -0
- data/html/lib/qiflib_rb.html +69 -0
- data/html/lib/qiflib_transaction_rb.html +52 -0
- data/html/lib/qiflib_util_rb.html +52 -0
- data/html/rdoc.css +706 -0
- data/lib/qiflib_category.rb +14 -2
- data/lib/qiflib_constants.rb +4 -3
- data/lib/qiflib_money.rb +1 -1
- data/lib/qiflib_transaction.rb +4 -30
- data/lib/qiflib_util.rb +101 -2
- metadata +25 -10
- data/README.md +0 -12
data/html/index.html
ADDED
@@ -0,0 +1,271 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
|
3
|
+
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
4
|
+
|
5
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
6
|
+
<head>
|
7
|
+
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
|
8
|
+
|
9
|
+
<title>qiflib</title>
|
10
|
+
|
11
|
+
<link type="text/css" media="screen" href="rdoc.css" rel="stylesheet" />
|
12
|
+
|
13
|
+
<script src="js/jquery.js" type="text/javascript" charset="utf-8"></script>
|
14
|
+
<script src="js/thickbox-compressed.js" type="text/javascript" charset="utf-8"></script>
|
15
|
+
<script src="js/quicksearch.js" type="text/javascript" charset="utf-8"></script>
|
16
|
+
<script src="js/darkfish.js" type="text/javascript" charset="utf-8"></script>
|
17
|
+
|
18
|
+
</head>
|
19
|
+
<body class="indexpage">
|
20
|
+
|
21
|
+
|
22
|
+
<h1>qiflib</h1>
|
23
|
+
|
24
|
+
|
25
|
+
<div id="main">
|
26
|
+
<h2><a href="Qiflib.html">Qiflib</a></h2>
|
27
|
+
<p>
|
28
|
+
A ruby library for reading and parsing qif files.
|
29
|
+
</p>
|
30
|
+
<p>
|
31
|
+
Transaction parsing is supported, including address fields, and up to three
|
32
|
+
“splits” per transaction.
|
33
|
+
</p>
|
34
|
+
<p>
|
35
|
+
Category-name parsing is also supported.
|
36
|
+
</p>
|
37
|
+
<p>
|
38
|
+
Also includes DDL generation for importing the parsed categories and
|
39
|
+
transactions into a sqlite3 database.
|
40
|
+
</p>
|
41
|
+
<h2>Install</h2>
|
42
|
+
<pre>
|
43
|
+
gem install qiflib
|
44
|
+
</pre>
|
45
|
+
<h2>Synopsis</h2>
|
46
|
+
<pre>
|
47
|
+
|
48
|
+
# Parse the transactions from one or more files to csv.
|
49
|
+
# Due to a discrepancy between the way iBank and Quicken export
|
50
|
+
# qif files, you need to specify either Qiflib::SOURCE_IBANK or
|
51
|
+
# Qiflib::SOURCE_QUICKEN as the :source.
|
52
|
+
|
53
|
+
input_list = []
|
54
|
+
input_list << {
|
55
|
+
:owner => 'Chris',
|
56
|
+
:filename => 'data/ibank_cj.qif',
|
57
|
+
:source => Qiflib::SOURCE_IBANK }
|
58
|
+
input_list << {
|
59
|
+
:owner => 'Teri',
|
60
|
+
:filename => 'data/ibank_tj.qif',
|
61
|
+
:source => Qiflib::SOURCE_QUICKEN }
|
62
|
+
|
63
|
+
csv_lines = Qiflib::Util.transactions_to_csv(input_list)
|
64
|
+
|
65
|
+
... write csv_lines to a file
|
66
|
+
|
67
|
+
# Parse the transactions from one or more files to ^-delimited text.
|
68
|
+
# The text lines are suitable for loading to sqlite3.
|
69
|
+
|
70
|
+
input_list = []
|
71
|
+
input_list << {
|
72
|
+
:owner => 'Chris',
|
73
|
+
:filename => 'data/ibank_cj.qif',
|
74
|
+
:source => Qiflib::SOURCE_IBANK }
|
75
|
+
|
76
|
+
delim_lines = Qiflib::Util.transactions_to_delim(input_list)
|
77
|
+
|
78
|
+
... write delim_lines to a file
|
79
|
+
|
80
|
+
# Parse the categories from one or more files to csv.
|
81
|
+
|
82
|
+
input_list = [ 'data/ibank_cj.qif' ]
|
83
|
+
csv_lines = Qiflib::Util.catetory_names_to_csv(input_list)
|
84
|
+
|
85
|
+
... write csv_lines to a file
|
86
|
+
|
87
|
+
|
88
|
+
# Parse the categories from one or more files to ^-delimited text.
|
89
|
+
# The text lines are suitable for loading to sqlite3.
|
90
|
+
|
91
|
+
input_list = [ 'data/ibank_cj.qif' ]
|
92
|
+
delim_lines = Qiflib::Util.catetory_names_to_delim(input_list)
|
93
|
+
|
94
|
+
... write delim_lines to a file
|
95
|
+
|
96
|
+
# Generate the DDL for a sqlite3 database with categories and transactions tables.
|
97
|
+
|
98
|
+
ddl_lines = Qiflib::Util.generate_sqlite_ddl
|
99
|
+
|
100
|
+
... write ddl_lines to a file; use it in the following bash-shell script
|
101
|
+
|
102
|
+
# Generate a bash-shell script to load the categories and transactions
|
103
|
+
# delimited files into a sqlite3 database, using the above DDL.
|
104
|
+
|
105
|
+
sh_lines = Qiflib::Util.generate_sqlite_load_script
|
106
|
+
|
107
|
+
... write sh_lines to a file; chmod 744; run it.
|
108
|
+
</pre>
|
109
|
+
<h2>Generated DDL and shell script</h2>
|
110
|
+
<pre>
|
111
|
+
# DDL file for sqlite3
|
112
|
+
|
113
|
+
drop table if exists transactions;
|
114
|
+
drop table if exists categories;
|
115
|
+
|
116
|
+
create table transactions(
|
117
|
+
id integer,
|
118
|
+
acct_owner varchar(80),
|
119
|
+
acct_name varchar(80),
|
120
|
+
acct_type varchar(80),
|
121
|
+
date varchar(80),
|
122
|
+
amount real,
|
123
|
+
number varchar(80),
|
124
|
+
ibank_n varchar(80),
|
125
|
+
cleared varchar(80),
|
126
|
+
payee varchar(80),
|
127
|
+
category varchar(80),
|
128
|
+
memo varchar(80),
|
129
|
+
split1_amount real,
|
130
|
+
split1_category varchar(80),
|
131
|
+
split1_memo real,
|
132
|
+
split2_amount varchar(80),
|
133
|
+
split2_category varchar(80),
|
134
|
+
split2_memo varchar(80),
|
135
|
+
split3_amount real,
|
136
|
+
split3_category varchar(80),
|
137
|
+
split3_memo varchar(80),
|
138
|
+
address1 varchar(80),
|
139
|
+
address2 varchar(80),
|
140
|
+
address3 varchar(80),
|
141
|
+
address4 varchar(80),
|
142
|
+
address5 varchar(80),
|
143
|
+
address6 varchar(80),
|
144
|
+
eol_ind char(1)
|
145
|
+
);
|
146
|
+
|
147
|
+
create table categories(
|
148
|
+
id integer,
|
149
|
+
name varchar(80)
|
150
|
+
);
|
151
|
+
|
152
|
+
.separator '^'
|
153
|
+
|
154
|
+
.import qiflib_transactions.txt transactions
|
155
|
+
.import qiflib_categories.txt categories
|
156
|
+
|
157
|
+
# bash-shell script
|
158
|
+
|
159
|
+
#!/bin/bash
|
160
|
+
|
161
|
+
sqlite3 qiflib.db < qiflib.ddl
|
162
|
+
|
163
|
+
|
164
|
+
</pre>
|
165
|
+
<h2>Copyright and License</h2>
|
166
|
+
<p>
|
167
|
+
Copyright 2012, Chris Joakim <cjoakim@bellsouth.net>.
|
168
|
+
</p>
|
169
|
+
<p>
|
170
|
+
GNU General Public License (GPLv3) license. See <a
|
171
|
+
href="http://www.gnu.org/copyleft/gpl.html">www.gnu.org/copyleft/gpl.html</a>
|
172
|
+
</p>
|
173
|
+
|
174
|
+
</div>
|
175
|
+
|
176
|
+
|
177
|
+
|
178
|
+
|
179
|
+
<h2>Files</h2>
|
180
|
+
<ul>
|
181
|
+
|
182
|
+
<li class="file"><a href="README_rdoc.html">README.rdoc</a></li>
|
183
|
+
|
184
|
+
</ul>
|
185
|
+
|
186
|
+
|
187
|
+
<h2 id="classes">Classes/Modules</h2>
|
188
|
+
<ul>
|
189
|
+
|
190
|
+
<li class="module"><a href="Qiflib.html">Qiflib</a></li>
|
191
|
+
|
192
|
+
<li class="class"><a href="Qiflib/Category.html">Qiflib::Category</a></li>
|
193
|
+
|
194
|
+
<li class="class"><a href="Qiflib/Date.html">Qiflib::Date</a></li>
|
195
|
+
|
196
|
+
<li class="class"><a href="Qiflib/Money.html">Qiflib::Money</a></li>
|
197
|
+
|
198
|
+
<li class="class"><a href="Qiflib/Transaction.html">Qiflib::Transaction</a></li>
|
199
|
+
|
200
|
+
<li class="class"><a href="Qiflib/Util.html">Qiflib::Util</a></li>
|
201
|
+
|
202
|
+
</ul>
|
203
|
+
|
204
|
+
<h2 id="methods">Methods</h2>
|
205
|
+
<ul>
|
206
|
+
|
207
|
+
<li><a href="Qiflib/Util.html#method-c-catetory_names_to_csv">::catetory_names_to_csv — Qiflib::Util</a></li>
|
208
|
+
|
209
|
+
<li><a href="Qiflib/Util.html#method-c-catetory_names_to_delim">::catetory_names_to_delim — Qiflib::Util</a></li>
|
210
|
+
|
211
|
+
<li><a href="Qiflib.html#method-c-csv_category_field_names">::csv_category_field_names — Qiflib</a></li>
|
212
|
+
|
213
|
+
<li><a href="Qiflib/Category.html#method-c-csv_header">::csv_header — Qiflib::Category</a></li>
|
214
|
+
|
215
|
+
<li><a href="Qiflib/Transaction.html#method-c-csv_header">::csv_header — Qiflib::Transaction</a></li>
|
216
|
+
|
217
|
+
<li><a href="Qiflib.html#method-c-csv_transaction_field_names">::csv_transaction_field_names — Qiflib</a></li>
|
218
|
+
|
219
|
+
<li><a href="Qiflib/Util.html#method-c-generate_sqlite_ddl">::generate_sqlite_ddl — Qiflib::Util</a></li>
|
220
|
+
|
221
|
+
<li><a href="Qiflib/Util.html#method-c-generate_sqlite_load_script">::generate_sqlite_load_script — Qiflib::Util</a></li>
|
222
|
+
|
223
|
+
<li><a href="Qiflib/Util.html#method-c-line_value">::line_value — Qiflib::Util</a></li>
|
224
|
+
|
225
|
+
<li><a href="Qiflib/Money.html#method-c-new">::new — Qiflib::Money</a></li>
|
226
|
+
|
227
|
+
<li><a href="Qiflib/Transaction.html#method-c-new">::new — Qiflib::Transaction</a></li>
|
228
|
+
|
229
|
+
<li><a href="Qiflib/Date.html#method-c-new">::new — Qiflib::Date</a></li>
|
230
|
+
|
231
|
+
<li><a href="Qiflib/Category.html#method-c-new">::new — Qiflib::Category</a></li>
|
232
|
+
|
233
|
+
<li><a href="Qiflib/Util.html#method-c-process_file_for_transactions">::process_file_for_transactions — Qiflib::Util</a></li>
|
234
|
+
|
235
|
+
<li><a href="Qiflib/Util.html#method-c-transactions_to_csv">::transactions_to_csv — Qiflib::Util</a></li>
|
236
|
+
|
237
|
+
<li><a href="Qiflib/Util.html#method-c-transactions_to_delim">::transactions_to_delim — Qiflib::Util</a></li>
|
238
|
+
|
239
|
+
<li><a href="Qiflib/Transaction.html#method-i-add_line">#add_line — Qiflib::Transaction</a></li>
|
240
|
+
|
241
|
+
<li><a href="Qiflib/Category.html#method-i-as_array">#as_array — Qiflib::Category</a></li>
|
242
|
+
|
243
|
+
<li><a href="Qiflib/Transaction.html#method-i-as_array">#as_array — Qiflib::Transaction</a></li>
|
244
|
+
|
245
|
+
<li><a href="Qiflib/Money.html#method-i-cents">#cents — Qiflib::Money</a></li>
|
246
|
+
|
247
|
+
<li><a href="Qiflib/Transaction.html#method-i-current_split">#current_split — Qiflib::Transaction</a></li>
|
248
|
+
|
249
|
+
<li><a href="Qiflib/Transaction.html#method-i-ibank%3F">#ibank? — Qiflib::Transaction</a></li>
|
250
|
+
|
251
|
+
<li><a href="Qiflib/Transaction.html#method-i-line_value">#line_value — Qiflib::Transaction</a></li>
|
252
|
+
|
253
|
+
<li><a href="Qiflib/Category.html#method-i-to_csv">#to_csv — Qiflib::Category</a></li>
|
254
|
+
|
255
|
+
<li><a href="Qiflib/Transaction.html#method-i-to_csv">#to_csv — Qiflib::Transaction</a></li>
|
256
|
+
|
257
|
+
<li><a href="Qiflib/Money.html#method-i-to_s">#to_s — Qiflib::Money</a></li>
|
258
|
+
|
259
|
+
<li><a href="Qiflib/Date.html#method-i-to_s">#to_s — Qiflib::Date</a></li>
|
260
|
+
|
261
|
+
<li><a href="Qiflib/Transaction.html#method-i-valid%3F">#valid? — Qiflib::Transaction</a></li>
|
262
|
+
|
263
|
+
</ul>
|
264
|
+
|
265
|
+
<div id="validator-badges">
|
266
|
+
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
267
|
+
<p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish
|
268
|
+
Rdoc Generator</a> 1.1.6</small>.</p>
|
269
|
+
</div>
|
270
|
+
</body>
|
271
|
+
</html>
|
@@ -0,0 +1,52 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
3
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
4
|
+
|
5
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
6
|
+
<head>
|
7
|
+
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
|
8
|
+
|
9
|
+
<title>File: qiflib_category.rb [qiflib]</title>
|
10
|
+
|
11
|
+
<link type="text/css" media="screen" href="../rdoc.css" rel="stylesheet" />
|
12
|
+
|
13
|
+
<script src="../js/jquery.js" type="text/javascript"
|
14
|
+
charset="utf-8"></script>
|
15
|
+
<script src="../js/thickbox-compressed.js" type="text/javascript"
|
16
|
+
charset="utf-8"></script>
|
17
|
+
<script src="../js/quicksearch.js" type="text/javascript"
|
18
|
+
charset="utf-8"></script>
|
19
|
+
<script src="../js/darkfish.js" type="text/javascript"
|
20
|
+
charset="utf-8"></script>
|
21
|
+
</head>
|
22
|
+
|
23
|
+
<body class="file file-popup">
|
24
|
+
<div id="metadata">
|
25
|
+
<dl>
|
26
|
+
<dt class="modified-date">Last Modified</dt>
|
27
|
+
<dd class="modified-date">2012-04-08 15:51:54 -0400</dd>
|
28
|
+
|
29
|
+
|
30
|
+
<dt class="requires">Requires</dt>
|
31
|
+
<dd class="requires">
|
32
|
+
<ul>
|
33
|
+
|
34
|
+
</ul>
|
35
|
+
</dd>
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
</dl>
|
40
|
+
</div>
|
41
|
+
|
42
|
+
<div id="documentation">
|
43
|
+
|
44
|
+
<div class="description">
|
45
|
+
<h2>Description</h2>
|
46
|
+
|
47
|
+
</div>
|
48
|
+
|
49
|
+
</div>
|
50
|
+
</body>
|
51
|
+
</html>
|
52
|
+
|
@@ -0,0 +1,52 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
3
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
4
|
+
|
5
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
6
|
+
<head>
|
7
|
+
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
|
8
|
+
|
9
|
+
<title>File: qiflib_constants.rb [qiflib]</title>
|
10
|
+
|
11
|
+
<link type="text/css" media="screen" href="../rdoc.css" rel="stylesheet" />
|
12
|
+
|
13
|
+
<script src="../js/jquery.js" type="text/javascript"
|
14
|
+
charset="utf-8"></script>
|
15
|
+
<script src="../js/thickbox-compressed.js" type="text/javascript"
|
16
|
+
charset="utf-8"></script>
|
17
|
+
<script src="../js/quicksearch.js" type="text/javascript"
|
18
|
+
charset="utf-8"></script>
|
19
|
+
<script src="../js/darkfish.js" type="text/javascript"
|
20
|
+
charset="utf-8"></script>
|
21
|
+
</head>
|
22
|
+
|
23
|
+
<body class="file file-popup">
|
24
|
+
<div id="metadata">
|
25
|
+
<dl>
|
26
|
+
<dt class="modified-date">Last Modified</dt>
|
27
|
+
<dd class="modified-date">2012-04-08 14:25:28 -0400</dd>
|
28
|
+
|
29
|
+
|
30
|
+
<dt class="requires">Requires</dt>
|
31
|
+
<dd class="requires">
|
32
|
+
<ul>
|
33
|
+
|
34
|
+
</ul>
|
35
|
+
</dd>
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
</dl>
|
40
|
+
</div>
|
41
|
+
|
42
|
+
<div id="documentation">
|
43
|
+
|
44
|
+
<div class="description">
|
45
|
+
<h2>Description</h2>
|
46
|
+
|
47
|
+
</div>
|
48
|
+
|
49
|
+
</div>
|
50
|
+
</body>
|
51
|
+
</html>
|
52
|
+
|
@@ -0,0 +1,52 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
3
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
4
|
+
|
5
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
6
|
+
<head>
|
7
|
+
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
|
8
|
+
|
9
|
+
<title>File: qiflib_date.rb [qiflib]</title>
|
10
|
+
|
11
|
+
<link type="text/css" media="screen" href="../rdoc.css" rel="stylesheet" />
|
12
|
+
|
13
|
+
<script src="../js/jquery.js" type="text/javascript"
|
14
|
+
charset="utf-8"></script>
|
15
|
+
<script src="../js/thickbox-compressed.js" type="text/javascript"
|
16
|
+
charset="utf-8"></script>
|
17
|
+
<script src="../js/quicksearch.js" type="text/javascript"
|
18
|
+
charset="utf-8"></script>
|
19
|
+
<script src="../js/darkfish.js" type="text/javascript"
|
20
|
+
charset="utf-8"></script>
|
21
|
+
</head>
|
22
|
+
|
23
|
+
<body class="file file-popup">
|
24
|
+
<div id="metadata">
|
25
|
+
<dl>
|
26
|
+
<dt class="modified-date">Last Modified</dt>
|
27
|
+
<dd class="modified-date">2012-04-01 07:21:12 -0400</dd>
|
28
|
+
|
29
|
+
|
30
|
+
<dt class="requires">Requires</dt>
|
31
|
+
<dd class="requires">
|
32
|
+
<ul>
|
33
|
+
|
34
|
+
</ul>
|
35
|
+
</dd>
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
</dl>
|
40
|
+
</div>
|
41
|
+
|
42
|
+
<div id="documentation">
|
43
|
+
|
44
|
+
<div class="description">
|
45
|
+
<h2>Description</h2>
|
46
|
+
|
47
|
+
</div>
|
48
|
+
|
49
|
+
</div>
|
50
|
+
</body>
|
51
|
+
</html>
|
52
|
+
|
@@ -0,0 +1,52 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
3
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
4
|
+
|
5
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
6
|
+
<head>
|
7
|
+
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
|
8
|
+
|
9
|
+
<title>File: qiflib_money.rb [qiflib]</title>
|
10
|
+
|
11
|
+
<link type="text/css" media="screen" href="../rdoc.css" rel="stylesheet" />
|
12
|
+
|
13
|
+
<script src="../js/jquery.js" type="text/javascript"
|
14
|
+
charset="utf-8"></script>
|
15
|
+
<script src="../js/thickbox-compressed.js" type="text/javascript"
|
16
|
+
charset="utf-8"></script>
|
17
|
+
<script src="../js/quicksearch.js" type="text/javascript"
|
18
|
+
charset="utf-8"></script>
|
19
|
+
<script src="../js/darkfish.js" type="text/javascript"
|
20
|
+
charset="utf-8"></script>
|
21
|
+
</head>
|
22
|
+
|
23
|
+
<body class="file file-popup">
|
24
|
+
<div id="metadata">
|
25
|
+
<dl>
|
26
|
+
<dt class="modified-date">Last Modified</dt>
|
27
|
+
<dd class="modified-date">2012-04-06 06:36:16 -0400</dd>
|
28
|
+
|
29
|
+
|
30
|
+
<dt class="requires">Requires</dt>
|
31
|
+
<dd class="requires">
|
32
|
+
<ul>
|
33
|
+
|
34
|
+
</ul>
|
35
|
+
</dd>
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
</dl>
|
40
|
+
</div>
|
41
|
+
|
42
|
+
<div id="documentation">
|
43
|
+
|
44
|
+
<div class="description">
|
45
|
+
<h2>Description</h2>
|
46
|
+
|
47
|
+
</div>
|
48
|
+
|
49
|
+
</div>
|
50
|
+
</body>
|
51
|
+
</html>
|
52
|
+
|
@@ -0,0 +1,69 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
3
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
4
|
+
|
5
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
6
|
+
<head>
|
7
|
+
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
|
8
|
+
|
9
|
+
<title>File: qiflib.rb [qiflib]</title>
|
10
|
+
|
11
|
+
<link type="text/css" media="screen" href="../rdoc.css" rel="stylesheet" />
|
12
|
+
|
13
|
+
<script src="../js/jquery.js" type="text/javascript"
|
14
|
+
charset="utf-8"></script>
|
15
|
+
<script src="../js/thickbox-compressed.js" type="text/javascript"
|
16
|
+
charset="utf-8"></script>
|
17
|
+
<script src="../js/quicksearch.js" type="text/javascript"
|
18
|
+
charset="utf-8"></script>
|
19
|
+
<script src="../js/darkfish.js" type="text/javascript"
|
20
|
+
charset="utf-8"></script>
|
21
|
+
</head>
|
22
|
+
|
23
|
+
<body class="file file-popup">
|
24
|
+
<div id="metadata">
|
25
|
+
<dl>
|
26
|
+
<dt class="modified-date">Last Modified</dt>
|
27
|
+
<dd class="modified-date">2012-04-07 08:29:46 -0400</dd>
|
28
|
+
|
29
|
+
|
30
|
+
<dt class="requires">Requires</dt>
|
31
|
+
<dd class="requires">
|
32
|
+
<ul>
|
33
|
+
|
34
|
+
<li>csv</li>
|
35
|
+
|
36
|
+
<li>qiflib_constants</li>
|
37
|
+
|
38
|
+
<li>qiflib_category</li>
|
39
|
+
|
40
|
+
<li>qiflib_date</li>
|
41
|
+
|
42
|
+
<li>qiflib_money</li>
|
43
|
+
|
44
|
+
<li>qiflib_transaction</li>
|
45
|
+
|
46
|
+
<li>qiflib_util</li>
|
47
|
+
|
48
|
+
</ul>
|
49
|
+
</dd>
|
50
|
+
|
51
|
+
|
52
|
+
|
53
|
+
</dl>
|
54
|
+
</div>
|
55
|
+
|
56
|
+
<div id="documentation">
|
57
|
+
|
58
|
+
<div class="description">
|
59
|
+
<h2>Description</h2>
|
60
|
+
<p>
|
61
|
+
standard libraries
|
62
|
+
</p>
|
63
|
+
|
64
|
+
</div>
|
65
|
+
|
66
|
+
</div>
|
67
|
+
</body>
|
68
|
+
</html>
|
69
|
+
|
@@ -0,0 +1,52 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
3
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
4
|
+
|
5
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
6
|
+
<head>
|
7
|
+
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
|
8
|
+
|
9
|
+
<title>File: qiflib_transaction.rb [qiflib]</title>
|
10
|
+
|
11
|
+
<link type="text/css" media="screen" href="../rdoc.css" rel="stylesheet" />
|
12
|
+
|
13
|
+
<script src="../js/jquery.js" type="text/javascript"
|
14
|
+
charset="utf-8"></script>
|
15
|
+
<script src="../js/thickbox-compressed.js" type="text/javascript"
|
16
|
+
charset="utf-8"></script>
|
17
|
+
<script src="../js/quicksearch.js" type="text/javascript"
|
18
|
+
charset="utf-8"></script>
|
19
|
+
<script src="../js/darkfish.js" type="text/javascript"
|
20
|
+
charset="utf-8"></script>
|
21
|
+
</head>
|
22
|
+
|
23
|
+
<body class="file file-popup">
|
24
|
+
<div id="metadata">
|
25
|
+
<dl>
|
26
|
+
<dt class="modified-date">Last Modified</dt>
|
27
|
+
<dd class="modified-date">2012-04-08 11:15:25 -0400</dd>
|
28
|
+
|
29
|
+
|
30
|
+
<dt class="requires">Requires</dt>
|
31
|
+
<dd class="requires">
|
32
|
+
<ul>
|
33
|
+
|
34
|
+
</ul>
|
35
|
+
</dd>
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
</dl>
|
40
|
+
</div>
|
41
|
+
|
42
|
+
<div id="documentation">
|
43
|
+
|
44
|
+
<div class="description">
|
45
|
+
<h2>Description</h2>
|
46
|
+
|
47
|
+
</div>
|
48
|
+
|
49
|
+
</div>
|
50
|
+
</body>
|
51
|
+
</html>
|
52
|
+
|
@@ -0,0 +1,52 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
3
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
4
|
+
|
5
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
6
|
+
<head>
|
7
|
+
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
|
8
|
+
|
9
|
+
<title>File: qiflib_util.rb [qiflib]</title>
|
10
|
+
|
11
|
+
<link type="text/css" media="screen" href="../rdoc.css" rel="stylesheet" />
|
12
|
+
|
13
|
+
<script src="../js/jquery.js" type="text/javascript"
|
14
|
+
charset="utf-8"></script>
|
15
|
+
<script src="../js/thickbox-compressed.js" type="text/javascript"
|
16
|
+
charset="utf-8"></script>
|
17
|
+
<script src="../js/quicksearch.js" type="text/javascript"
|
18
|
+
charset="utf-8"></script>
|
19
|
+
<script src="../js/darkfish.js" type="text/javascript"
|
20
|
+
charset="utf-8"></script>
|
21
|
+
</head>
|
22
|
+
|
23
|
+
<body class="file file-popup">
|
24
|
+
<div id="metadata">
|
25
|
+
<dl>
|
26
|
+
<dt class="modified-date">Last Modified</dt>
|
27
|
+
<dd class="modified-date">2012-04-08 16:11:43 -0400</dd>
|
28
|
+
|
29
|
+
|
30
|
+
<dt class="requires">Requires</dt>
|
31
|
+
<dd class="requires">
|
32
|
+
<ul>
|
33
|
+
|
34
|
+
</ul>
|
35
|
+
</dd>
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
</dl>
|
40
|
+
</div>
|
41
|
+
|
42
|
+
<div id="documentation">
|
43
|
+
|
44
|
+
<div class="description">
|
45
|
+
<h2>Description</h2>
|
46
|
+
|
47
|
+
</div>
|
48
|
+
|
49
|
+
</div>
|
50
|
+
</body>
|
51
|
+
</html>
|
52
|
+
|