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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a41521a72c12f72d4415b079518d27234c6dff5338b53bad0ea71f584d120b9c
4
- data.tar.gz: 24e5cf7bd405f4436167391f4310cc267387d4413d0d98a681c60960585fa961
3
+ metadata.gz: d9427f79016b9b448b65faa61071dd501cd1d4005a08144d9c2ccf1d534e96c6
4
+ data.tar.gz: d22cf01944eb513c7a7d21ca70183064aa297a61d7276b656296c58044aa047b
5
5
  SHA512:
6
- metadata.gz: b97320806f6277fb1700953da61465d7ac63e4d73fc34839c598ab4260caf520a5f2367098859168c8ef936738faf2ee0625920a9af8c315bf0a71542851c29d
7
- data.tar.gz: 31f9a360a2df8b294e36a68392aa9da19ad4ff09889c6e3099be7876d3fba31bc0da4e138045ef376ddf172a0e437b9675b85cd15b51b8b177f9b0aa4f2b6fc9
6
+ metadata.gz: 2e8b28271f2a984f974fe24f7a34d5c043a5414ee146df6bd92005030e6c251740c3f8d9c6d1a49354734ecd780a999362fc241a6c3b4fde617bf8d8c0fc4321
7
+ data.tar.gz: 89f6ec5cc3d4ae28c422e332862f4d6815409f426203548e74be04b0666fe8ee0ec1dd5227582d1172fb64e89f689089a3dc8b3c1cbb56e19b6e56ae290774c4
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- vgcal (0.2.0)
4
+ vgcal (0.2.1)
5
5
  dotenv
6
6
  google-api-client
7
7
  thor (~> 1.1)
data/README.md CHANGED
@@ -41,11 +41,11 @@ Usage:
41
41
  vgcal show
42
42
 
43
43
  Options:
44
- -d, [--date=DATE] # Show relative date. ex.-1, +10
45
- -c, [--current-week=CURRENT-WEEK] # Show current week tasks
46
- -n, [--next-week=NEXT-WEEK] # Show next week tasks
47
- -s, [--start-date=N] # Start date. ex.20210701
48
- -e, [--end-date=N] # End date. ex.20210728
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: :string, aliases: '-c', desc: 'Show current week tasks'
25
- option :'next-week', type: :string, aliases: '-n', desc: 'Show next week tasks'
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Vgcal
4
- VERSION = '0.2.1'
4
+ VERSION = '0.2.2'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vgcal
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shota Ito