adp-downloader 0.2.3 → 0.2.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/README.md +9 -0
- data/lib/adp-downloader/runner.rb +1 -0
- data/lib/adp-downloader/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 980f8c4dc82ef6afc55e1db3d09749f3cbe6f458
|
4
|
+
data.tar.gz: ea629da340c356971c5ee23d49bc017e0888e7b1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 331654ef077e937d1556f3eb4878ae8c37a737b3c9aeb9f3f691f8f2d1858e76c7484ab0c543af7327afc6dc77cc30f89938aa7eb2e25c027c0fbb58ffbdbd0c
|
7
|
+
data.tar.gz: afef72a5b199f7f50f239fed12895cb15619366012deb574f1ee8adb7135732c80b19a433e8bf4be1afd809d2302ea4654c8f899e486877cc2ba5f1f5e472bc5
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -13,6 +13,15 @@ that have not yet been downloaded.
|
|
13
13
|
|
14
14
|
## Upgrading
|
15
15
|
|
16
|
+
### 0.2.x --> 0.2.3
|
17
|
+
|
18
|
+
Statements can now be downloaded by employer/account. This is not a
|
19
|
+
breaking change, but if you want to start downloading statements from
|
20
|
+
multiple employers/accounts, you might want to consider moving all your
|
21
|
+
previous statements into a directory named after the employer. See
|
22
|
+
readme for details. Always backup your statements before upgrading and
|
23
|
+
running new versions.
|
24
|
+
|
16
25
|
### 0.1.x --> 0.2.x
|
17
26
|
|
18
27
|
Statements are stored by year and the app uses the PDF ID, that is
|
@@ -35,6 +35,7 @@ module ADPDownloader
|
|
35
35
|
options.banner = "Usage: adp-downloader [options]"
|
36
36
|
options.on("-e", "--employer EMP", "Employer name") { |e| Config.employer = e }
|
37
37
|
options.on("-v", "--quiet", "Only display errors") { Config.quiet = true }
|
38
|
+
options.on("--version", "Display the current version") { puts(VERSION); exit }
|
38
39
|
options.on("-h", "--help", "Show this message") { puts(options); exit }
|
39
40
|
options.parse!(@arguments)
|
40
41
|
end
|