reckon 0.3.2 → 0.3.3
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/Gemfile.lock +3 -3
- data/LICENSE +1 -1
- data/{README.rdoc → README.md} +11 -11
- data/reckon.gemspec +2 -2
- metadata +5 -5
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
reckon (0.3.
|
|
4
|
+
reckon (0.3.2)
|
|
5
5
|
chronic (>= 0.3.0)
|
|
6
6
|
fastercsv (>= 1.5.1)
|
|
7
7
|
highline (>= 1.5.2)
|
|
@@ -10,10 +10,10 @@ PATH
|
|
|
10
10
|
GEM
|
|
11
11
|
remote: http://rubygems.org/
|
|
12
12
|
specs:
|
|
13
|
-
chronic (0.
|
|
13
|
+
chronic (0.9.0)
|
|
14
14
|
diff-lcs (1.1.3)
|
|
15
15
|
fastercsv (1.5.5)
|
|
16
|
-
highline (1.6.
|
|
16
|
+
highline (1.6.15)
|
|
17
17
|
rspec (2.11.0)
|
|
18
18
|
rspec-core (~> 2.11.0)
|
|
19
19
|
rspec-expectations (~> 2.11.0)
|
data/LICENSE
CHANGED
data/{README.rdoc → README.md}
RENAMED
|
@@ -1,36 +1,36 @@
|
|
|
1
|
-
|
|
1
|
+
# Reckon
|
|
2
2
|
|
|
3
3
|
Reckon automagically converts CSV files for use with the command-line accounting tool Ledger[https://github.com/jwiegley/ledger/wiki]. It also helps you to select the correct accounts associated with the CSV data using Bayesian machine learning.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
## Installation
|
|
6
6
|
|
|
7
7
|
Assuming you have Ruby and Rubygems[http://rubygems.org/pages/download] installed on your system, simply run
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
(sudo) gem install reckon
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
## Example Usage
|
|
12
12
|
|
|
13
13
|
First, login to your bank and export your transaction data as a CSV file.
|
|
14
14
|
|
|
15
15
|
To see how the CSV parses:
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
reckon -f bank.csv -p
|
|
18
18
|
|
|
19
19
|
To convert to ledger format and label everything, do:
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
reckon -f bank.csv -o output.dat
|
|
22
22
|
|
|
23
23
|
To have reckon learn from an existing ledger file, provide it with -l:
|
|
24
24
|
|
|
25
|
-
|
|
25
|
+
reckon -f bank.csv -l 2010.dat -o output.dat
|
|
26
26
|
|
|
27
27
|
Learn more with
|
|
28
28
|
|
|
29
|
-
|
|
29
|
+
reckon -h
|
|
30
30
|
|
|
31
31
|
If you find CSV files that it can't parse, send me examples and I'll try to fix it.
|
|
32
32
|
|
|
33
|
-
|
|
33
|
+
## Note on Patches/Pull Requests
|
|
34
34
|
|
|
35
35
|
* Fork the project.
|
|
36
36
|
* Make your feature addition or bug fix.
|
|
@@ -40,6 +40,6 @@ If you find CSV files that it can't parse, send me examples and I'll try to fix
|
|
|
40
40
|
(if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
|
|
41
41
|
* Send me a pull request. Bonus points for topic branches.
|
|
42
42
|
|
|
43
|
-
|
|
43
|
+
## Copyright
|
|
44
44
|
|
|
45
|
-
Copyright (c)
|
|
45
|
+
Copyright (c) 2013 Andrew Cantino. See LICENSE for details.
|
data/reckon.gemspec
CHANGED
|
@@ -3,10 +3,10 @@ $:.push File.expand_path("../lib", __FILE__)
|
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |s|
|
|
5
5
|
s.name = %q{reckon}
|
|
6
|
-
s.version = "0.3.
|
|
6
|
+
s.version = "0.3.3"
|
|
7
7
|
s.authors = ["Andrew Cantino"]
|
|
8
8
|
s.email = %q{andrew@iterationlabs.com}
|
|
9
|
-
s.homepage = %q{
|
|
9
|
+
s.homepage = %q{https://github.com/cantino/reckon}
|
|
10
10
|
s.description = %q{Reckon automagically converts CSV files for use with the command-line accounting tool Ledger. It also helps you to select the correct accounts associated with the CSV data using Bayesian machine learning.}
|
|
11
11
|
s.summary = %q{Utility for interactively converting and labeling CSV files for the Ledger accounting tool.}
|
|
12
12
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: reckon
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.3
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2013-01-13 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rspec
|
|
@@ -106,7 +106,7 @@ files:
|
|
|
106
106
|
- Gemfile
|
|
107
107
|
- Gemfile.lock
|
|
108
108
|
- LICENSE
|
|
109
|
-
- README.
|
|
109
|
+
- README.md
|
|
110
110
|
- Rakefile
|
|
111
111
|
- VERSION
|
|
112
112
|
- bin/reckon
|
|
@@ -118,7 +118,7 @@ files:
|
|
|
118
118
|
- spec/reckon/ledger_parser_spec.rb
|
|
119
119
|
- spec/spec.opts
|
|
120
120
|
- spec/spec_helper.rb
|
|
121
|
-
homepage:
|
|
121
|
+
homepage: https://github.com/cantino/reckon
|
|
122
122
|
licenses: []
|
|
123
123
|
post_install_message:
|
|
124
124
|
rdoc_options: []
|
|
@@ -138,7 +138,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
138
138
|
version: '0'
|
|
139
139
|
requirements: []
|
|
140
140
|
rubyforge_project:
|
|
141
|
-
rubygems_version: 1.8.
|
|
141
|
+
rubygems_version: 1.8.23
|
|
142
142
|
signing_key:
|
|
143
143
|
specification_version: 3
|
|
144
144
|
summary: Utility for interactively converting and labeling CSV files for the Ledger
|