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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 74636952a5502d798d4324d53ee023be0b73af7d
4
- data.tar.gz: f861249c96f55e16bb560abff6796ce50a024155
3
+ metadata.gz: 980f8c4dc82ef6afc55e1db3d09749f3cbe6f458
4
+ data.tar.gz: ea629da340c356971c5ee23d49bc017e0888e7b1
5
5
  SHA512:
6
- metadata.gz: bd8ff91bf6864ad6d46b197aa58d764e757e68251556080db71143c05886cd10af5a9ad5a0e688ca4600b6ef905367802a5ba3df54592a30d83b719e3d37a2cd
7
- data.tar.gz: 27ee300c652947c7b85e6df5e9309600d195ad92c9d0aeeecfab60b9e67364e43ae781e388cde63d3d0f3644950bed23126b30872767d1bab6462f988de2131a
6
+ metadata.gz: 331654ef077e937d1556f3eb4878ae8c37a737b3c9aeb9f3f691f8f2d1858e76c7484ab0c543af7327afc6dc77cc30f89938aa7eb2e25c027c0fbb58ffbdbd0c
7
+ data.tar.gz: afef72a5b199f7f50f239fed12895cb15619366012deb574f1ee8adb7135732c80b19a433e8bf4be1afd809d2302ea4654c8f899e486877cc2ba5f1f5e472bc5
@@ -6,6 +6,13 @@ Changelog
6
6
  * -
7
7
 
8
8
 
9
+ ## 0.2.3
10
+
11
+ * [f73306b][] Add employer cmdline option
12
+
13
+ [f73306b]: ../../commit/f73306b
14
+
15
+
9
16
  ## 0.2.1
10
17
 
11
18
  * [88d8f76][] Add command line options to prevent output
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
@@ -1,3 +1,3 @@
1
1
  module ADPDownloader
2
- VERSION = "0.2.3"
2
+ VERSION = "0.2.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: adp-downloader
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Anderson Mesquita (andersonvom)