vgcal 0.2.1 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +5 -5
- data/lib/vgcal/handlers/describer.rb +2 -2
- data/lib/vgcal/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d9427f79016b9b448b65faa61071dd501cd1d4005a08144d9c2ccf1d534e96c6
|
4
|
+
data.tar.gz: d22cf01944eb513c7a7d21ca70183064aa297a61d7276b656296c58044aa047b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2e8b28271f2a984f974fe24f7a34d5c043a5414ee146df6bd92005030e6c251740c3f8d9c6d1a49354734ecd780a999362fc241a6c3b4fde617bf8d8c0fc4321
|
7
|
+
data.tar.gz: 89f6ec5cc3d4ae28c422e332862f4d6815409f426203548e74be04b0666fe8ee0ec1dd5227582d1172fb64e89f689089a3dc8b3c1cbb56e19b6e56ae290774c4
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -41,11 +41,11 @@ Usage:
|
|
41
41
|
vgcal show
|
42
42
|
|
43
43
|
Options:
|
44
|
-
-d, [--date=DATE]
|
45
|
-
-c, [--current-week
|
46
|
-
-n, [--next-week
|
47
|
-
-s, [--start-date=N]
|
48
|
-
-e, [--end-date=N]
|
44
|
+
-d, [--date=DATE] # Show relative date. ex.-1, +10
|
45
|
+
-c, [--current-week], [--no-current-week] # Show current week tasks
|
46
|
+
-n, [--next-week], [--no-next-week] # Show next week tasks
|
47
|
+
-s, [--start-date=N] # Start date. ex.20210701
|
48
|
+
-e, [--end-date=N] # End date. ex.20210728
|
49
49
|
|
50
50
|
Show google calendar
|
51
51
|
$
|
@@ -21,8 +21,8 @@ module Vgcal
|
|
21
21
|
end
|
22
22
|
|
23
23
|
option :date, type: :string, aliases: '-d', desc: 'Show relative date. ex.-1, +10'
|
24
|
-
option :'current-week', type: :
|
25
|
-
option :'next-week', type: :
|
24
|
+
option :'current-week', type: :boolean, aliases: '-c', desc: 'Show current week tasks'
|
25
|
+
option :'next-week', type: :boolean, aliases: '-n', desc: 'Show next week tasks'
|
26
26
|
option :'start-date', type: :numeric, aliases: '-s', desc: 'Start date. ex.20210701'
|
27
27
|
option :'end-date', type: :numeric, aliases: '-e', desc: 'End date. ex.20210728'
|
28
28
|
|
data/lib/vgcal/version.rb
CHANGED