qif 0.4 → 0.5
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +2 -0
- data/lib/qif/writer.rb +2 -2
- data/qif.gemspec +1 -1
- data/spec/lib/writer_spec.rb +1 -1
- metadata +3 -3
data/CHANGELOG
CHANGED
data/lib/qif/writer.rb
CHANGED
@@ -39,7 +39,7 @@ module Qif
|
|
39
39
|
@format = format
|
40
40
|
@transactions = []
|
41
41
|
end
|
42
|
-
|
42
|
+
|
43
43
|
# Add a transaction for writing
|
44
44
|
def <<(transaction)
|
45
45
|
@transactions << transaction
|
@@ -59,7 +59,7 @@ module Qif
|
|
59
59
|
private
|
60
60
|
|
61
61
|
def write_header
|
62
|
-
|
62
|
+
@io.write("!Type:%s\n" % @type)
|
63
63
|
end
|
64
64
|
|
65
65
|
def write_transactions
|
data/qif.gemspec
CHANGED
data/spec/lib/writer_spec.rb
CHANGED
metadata
CHANGED