reckon 0.3.9 → 0.3.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGES.md +3 -0
- data/Gemfile.lock +3 -3
- data/lib/reckon/app.rb +2 -2
- data/reckon.gemspec +1 -1
- metadata +2 -3
- data/VERSION +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 17af5e887336c4c5b8a010ea22ad169c3df1efdd
|
4
|
+
data.tar.gz: 7b57480844bc08468e254b8b4633ff78e25a020e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 93ac7ab7c77cd1b411efc86fd7b373c644301d26dc468751a11ab536f4389c2b212437354e7f105ced0705943ecf196a692f5453345c4ddc4e1771376e49d134
|
7
|
+
data.tar.gz: e7fa2a91210cf228cb8b4f96789212f380e9723119c5d25d58a1b3115cde6b1a63cbe7f09adce4104e4a8b5a8480f8695cbe1702fcf3aa392e18dd8cdadabe46
|
data/CHANGES.md
CHANGED
@@ -1,5 +1,8 @@
|
|
1
1
|
# Changes
|
2
2
|
|
3
|
+
- 02/25/14 - Improved handling of US vs non US dates
|
4
|
+
- 02/15/14 - Detect debit - credit column
|
5
|
+
- 02/15/14 - Two money column detection improved
|
3
6
|
* 7/02/13 - Customizable date parsing contributed by @mauromorales.
|
4
7
|
* 6/26/13 - Multi-currency support contributed by @zebh.
|
5
8
|
* 4/27/13 - Add --account commandline option
|
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.10)
|
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.10.2)
|
14
14
|
diff-lcs (1.1.3)
|
15
15
|
fastercsv (1.5.5)
|
16
|
-
highline (1.6.
|
16
|
+
highline (1.6.21)
|
17
17
|
rake (10.0.4)
|
18
18
|
rspec (2.11.0)
|
19
19
|
rspec-core (~> 2.11.0)
|
data/lib/reckon/app.rb
CHANGED
@@ -3,7 +3,7 @@ require 'pp'
|
|
3
3
|
|
4
4
|
module Reckon
|
5
5
|
class App
|
6
|
-
VERSION = "Reckon 0.
|
6
|
+
VERSION = "Reckon 0.3.10"
|
7
7
|
attr_accessor :options, :accounts, :tokens, :seen, :csv_parser
|
8
8
|
|
9
9
|
def initialize(options = {})
|
@@ -221,7 +221,7 @@ module Reckon
|
|
221
221
|
options[:comma_separates_cents] = c
|
222
222
|
end
|
223
223
|
|
224
|
-
opts.on("", "--encoding", "Specify an encoding for the CSV file") do |e|
|
224
|
+
opts.on("", "--encoding e", "Specify an encoding for the CSV file") do |e|
|
225
225
|
options[:encoding] = e
|
226
226
|
end
|
227
227
|
|
data/reckon.gemspec
CHANGED
@@ -3,7 +3,7 @@ $:.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.10"
|
7
7
|
s.authors = ["Andrew Cantino", "BlackEdder"]
|
8
8
|
s.email = %q{andrew@iterationlabs.com}
|
9
9
|
s.homepage = %q{https://github.com/cantino/reckon}
|
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.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrew Cantino
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-
|
12
|
+
date: 2014-08-16 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rspec
|
@@ -101,7 +101,6 @@ files:
|
|
101
101
|
- LICENSE
|
102
102
|
- README.md
|
103
103
|
- Rakefile
|
104
|
-
- VERSION
|
105
104
|
- bin/reckon
|
106
105
|
- lib/reckon.rb
|
107
106
|
- lib/reckon/app.rb
|
data/VERSION
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
0.3.4
|