csv2qif 1.0.1 → 1.0.2
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/config/paypal.rb +7 -6
- data/config/schwabone.yml +1 -1
- data/lib/csv2qif/version.rb +1 -1
- data/spec/csv2qif_cli_spec.rb +1 -1
- metadata +1 -2
- data/config/schwabone_test.yml +0 -9
data/config/paypal.rb
CHANGED
@@ -1,8 +1,9 @@
|
|
1
1
|
{
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
2
|
+
type: 'Bank',
|
3
|
+
header: 1,
|
4
|
+
date_format: '%m/%d/%Y',
|
5
|
+
where: lambda { %w{Completed Refunded}.include? f },
|
6
|
+
date: lambda { a },
|
7
|
+
payee: lambda { [d, e, g].join ', ' },
|
8
|
+
amount: lambda { h }
|
8
9
|
}
|
data/config/schwabone.yml
CHANGED
data/lib/csv2qif/version.rb
CHANGED
data/spec/csv2qif_cli_spec.rb
CHANGED
@@ -9,7 +9,7 @@ describe Csv2qif::CLI, "execute" do
|
|
9
9
|
cmd_exec(%w{-h}).should =~ /Usage:/
|
10
10
|
end
|
11
11
|
|
12
|
-
{:s1 => %w{-b
|
12
|
+
{:s1 => %w{-b schwabone spec/data/s1.csv}
|
13
13
|
}.each do |name, arguments|
|
14
14
|
it "should convert #{name}" do
|
15
15
|
cmd_exec(arguments).should be_empty
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: csv2qif
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -50,7 +50,6 @@ files:
|
|
50
50
|
- config/paypal.rb
|
51
51
|
- config/schwabchecking.rb
|
52
52
|
- config/schwabone.yml
|
53
|
-
- config/schwabone_test.yml
|
54
53
|
- csv2qif.gemspec
|
55
54
|
- lib/csv2qif.rb
|
56
55
|
- lib/csv2qif/cli.rb
|