vgcal 0.3.2 → 0.4.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: ef38649601c8235213557c91a0140fc4b9dbb48321cd8681a52f5a8175b7ad8c
4
- data.tar.gz: 2858b7e91979460d4528b85592b6be3279f4c44504f64513ca3face8beb77adf
3
+ metadata.gz: cb56a54387940745fdd4645f1e6897ed4ddee06a5d61d3baefb016de4477d1c6
4
+ data.tar.gz: b92316054d45103f99d6d978f63a6cfecee3e8d37ba18c6233baac5b1cd718a8
5
5
  SHA512:
6
- metadata.gz: 2945ec5f859fdf234b24c848b0f8a253d09d6b82d07ae7a9be77ccc7129e9ce19d5d2cc9189e11031532704d2562d24dcfd15b7a2a75c44c6e2ab3d9708a724e
7
- data.tar.gz: d06dd6b8a38199c763096f0b5cf5195455be81cb67af952f6c93d653d8065a2683afbe23760e3b2ec96f1e34dacc7a945cf1b1cd4d1def1a12ba762ea276174e
6
+ metadata.gz: ac05e65e1fd0e8a5a8b3e89d692edd80386a4119b7e5576b8b5c9639bea72cc5178b539a0c9d043e9672182e4e53dca537785d708f3e20f3e9e1fba53c555c30
7
+ data.tar.gz: 48a3cb1ff2e1a8c4e9c00b4cf418bc103975ee557a8911c841cbe1ce6c6d9f285232fb6367338e550e0dc9fb4c9b0c25a5853aef4a4b777ca25276abda28e549
data/.rubocop.yml ADDED
@@ -0,0 +1,10 @@
1
+ inherit_from: .rubocop_todo.yml
2
+ require:
3
+ - rubocop-performance
4
+ - rubocop-rspec
5
+ AllCops:
6
+ NewCops: enable
7
+
8
+ RSpec/ExampleLength:
9
+ Exclude:
10
+ - 'spec/**/*'
data/.rubocop_todo.yml ADDED
@@ -0,0 +1,170 @@
1
+ # This configuration was generated by
2
+ # `rubocop --auto-gen-config`
3
+ # on 2022-08-07 06:07:33 UTC using RuboCop version 1.18.4.
4
+ # The point is for the user to remove these configuration records
5
+ # one by one as the offenses are removed from the code base.
6
+ # Note that changes in the inspected code, or installation of new
7
+ # versions of RuboCop, may require this file to be generated again.
8
+
9
+ # Offense count: 2
10
+ # Cop supports --auto-correct.
11
+ # Configuration parameters: TreatCommentsAsGroupSeparators, ConsiderPunctuation, Include.
12
+ # Include: **/*.gemspec
13
+ Gemspec/OrderedDependencies:
14
+ Exclude:
15
+ - 'vgcal.gemspec'
16
+
17
+ # Offense count: 1
18
+ # Cop supports --auto-correct.
19
+ # Configuration parameters: AllowForAlignment, AllowBeforeTrailingComments, ForceEqualSignAlignment.
20
+ Layout/ExtraSpacing:
21
+ Exclude:
22
+ - 'vgcal.gemspec'
23
+
24
+ # Offense count: 10
25
+ # Cop supports --auto-correct.
26
+ # Configuration parameters: AllowMultipleStyles, EnforcedHashRocketStyle, EnforcedColonStyle, EnforcedLastArgumentHashStyle.
27
+ # SupportedHashRocketStyles: key, separator, table
28
+ # SupportedColonStyles: key, separator, table
29
+ # SupportedLastArgumentHashStyles: always_inspect, always_ignore, ignore_implicit, ignore_explicit
30
+ Layout/HashAlignment:
31
+ Exclude:
32
+ - 'lib/vgcal/handlers/describer.rb'
33
+ - 'lib/vgcal/my_calendar.rb'
34
+
35
+ # Offense count: 1
36
+ # Cop supports --auto-correct.
37
+ # Configuration parameters: Width, IgnoredPatterns.
38
+ Layout/IndentationWidth:
39
+ Exclude:
40
+ - 'vgcal.gemspec'
41
+
42
+ # Offense count: 2
43
+ # Cop supports --auto-correct.
44
+ Layout/SpaceAfterComma:
45
+ Exclude:
46
+ - 'lib/vgcal/handlers/describer.rb'
47
+
48
+ # Offense count: 1
49
+ # Cop supports --auto-correct.
50
+ # Configuration parameters: AllowForAlignment, EnforcedStyleForExponentOperator.
51
+ # SupportedStylesForExponentOperator: space, no_space
52
+ Layout/SpaceAroundOperators:
53
+ Exclude:
54
+ - 'vgcal.gemspec'
55
+
56
+ # Offense count: 1
57
+ # Cop supports --auto-correct.
58
+ # Configuration parameters: EnforcedStyle, EnforcedStyleForEmptyBraces, SpaceBeforeBlockParameters.
59
+ # SupportedStyles: space, no_space
60
+ # SupportedStylesForEmptyBraces: space, no_space
61
+ Layout/SpaceInsideBlockBraces:
62
+ Exclude:
63
+ - 'Gemfile'
64
+
65
+ # Offense count: 2
66
+ # Cop supports --auto-correct.
67
+ Lint/ParenthesesAsGroupedExpression:
68
+ Exclude:
69
+ - 'lib/vgcal/handlers/describer.rb'
70
+
71
+ # Offense count: 6
72
+ # Configuration parameters: IgnoredMethods, CountRepeatedAttributes.
73
+ Metrics/AbcSize:
74
+ Max: 64
75
+
76
+ # Offense count: 4
77
+ # Configuration parameters: CountComments, CountAsOne, ExcludedMethods, IgnoredMethods.
78
+ # IgnoredMethods: refine
79
+ Metrics/BlockLength:
80
+ Max: 147
81
+
82
+ # Offense count: 1
83
+ # Configuration parameters: CountComments, CountAsOne.
84
+ Metrics/ClassLength:
85
+ Max: 140
86
+
87
+ # Offense count: 3
88
+ # Configuration parameters: IgnoredMethods.
89
+ Metrics/CyclomaticComplexity:
90
+ Max: 10
91
+
92
+ # Offense count: 8
93
+ # Configuration parameters: CountComments, CountAsOne, ExcludedMethods, IgnoredMethods.
94
+ Metrics/MethodLength:
95
+ Max: 27
96
+
97
+ # Offense count: 3
98
+ # Configuration parameters: IgnoredMethods.
99
+ Metrics/PerceivedComplexity:
100
+ Max: 12
101
+
102
+ # Offense count: 9
103
+ # Configuration parameters: EnforcedStyle, CheckMethodNames, CheckSymbols, AllowedIdentifiers.
104
+ # SupportedStyles: snake_case, normalcase, non_integer
105
+ # AllowedIdentifiers: capture3, iso8601, rfc1123_date, rfc822, rfc2822, rfc3339
106
+ Naming/VariableNumber:
107
+ Exclude:
108
+ - 'spec/vgcal_spec.rb'
109
+
110
+ # Offense count: 4
111
+ # Configuration parameters: AllowedChars.
112
+ # AllowedChars: ©
113
+ Style/AsciiComments:
114
+ Exclude:
115
+ - 'lib/vgcal/my_calendar.rb'
116
+
117
+ # Offense count: 1
118
+ # Configuration parameters: AllowedConstants.
119
+ Style/Documentation:
120
+ Exclude:
121
+ - 'spec/**/*'
122
+ - 'test/**/*'
123
+ - 'lib/vgcal/my_calendar.rb'
124
+
125
+ # Offense count: 1
126
+ # Cop supports --auto-correct.
127
+ Style/ExpandPathArguments:
128
+ Exclude:
129
+ - 'vgcal.gemspec'
130
+
131
+ # Offense count: 1
132
+ # Cop supports --auto-correct.
133
+ # Configuration parameters: EnforcedStyle.
134
+ # SupportedStyles: always, always_true, never
135
+ Style/FrozenStringLiteralComment:
136
+ Exclude:
137
+ - 'exe/vgcal'
138
+
139
+ # Offense count: 2
140
+ # Cop supports --auto-correct.
141
+ Style/RedundantInterpolation:
142
+ Exclude:
143
+ - 'lib/vgcal/handlers/describer.rb'
144
+
145
+ # Offense count: 38
146
+ # Cop supports --auto-correct.
147
+ # Configuration parameters: EnforcedStyle, ConsistentQuotesInMultiline.
148
+ # SupportedStyles: single_quotes, double_quotes
149
+ Style/StringLiterals:
150
+ Exclude:
151
+ - 'Gemfile'
152
+ - 'Rakefile'
153
+ - 'bin/console'
154
+ - 'exe/vgcal'
155
+ - 'spec/spec_helper.rb'
156
+ - 'spec/vgcal_spec.rb'
157
+ - 'vgcal.gemspec'
158
+
159
+ # Offense count: 1
160
+ # Cop supports --auto-correct.
161
+ Style/SymbolLiteral:
162
+ Exclude:
163
+ - 'lib/vgcal/handlers/describer.rb'
164
+
165
+ # Offense count: 1
166
+ # Cop supports --auto-correct.
167
+ # Configuration parameters: AutoCorrect, AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
168
+ # URISchemes: http, https
169
+ Layout/LineLength:
170
+ Max: 121
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.0.1
1
+ 3.0.4
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- vgcal (0.3.2)
4
+ vgcal (0.4.2)
5
5
  dotenv
6
6
  google-api-client
7
7
  thor (~> 1.1)
@@ -9,43 +9,27 @@ PATH
9
9
  GEM
10
10
  remote: https://rubygems.org/
11
11
  specs:
12
- activesupport (6.1.4.1)
12
+ activesupport (7.0.3.1)
13
13
  concurrent-ruby (~> 1.0, >= 1.0.2)
14
14
  i18n (>= 1.6, < 2)
15
15
  minitest (>= 5.1)
16
16
  tzinfo (~> 2.0)
17
- zeitwerk (~> 2.3)
18
17
  addressable (2.8.0)
19
18
  public_suffix (>= 2.0.2, < 5.0)
20
19
  ast (2.4.2)
21
- concurrent-ruby (1.1.9)
20
+ concurrent-ruby (1.1.10)
22
21
  declarative (0.0.20)
23
22
  diff-lcs (1.4.4)
24
- dotenv (2.7.6)
25
- faraday (1.7.1)
26
- faraday-em_http (~> 1.0)
27
- faraday-em_synchrony (~> 1.0)
28
- faraday-excon (~> 1.1)
29
- faraday-httpclient (~> 1.0.1)
30
- faraday-net_http (~> 1.0)
31
- faraday-net_http_persistent (~> 1.1)
32
- faraday-patron (~> 1.0)
33
- faraday-rack (~> 1.0)
34
- multipart-post (>= 1.2, < 3)
23
+ dotenv (2.8.1)
24
+ faraday (2.4.0)
25
+ faraday-net_http (~> 2.0)
35
26
  ruby2_keywords (>= 0.0.4)
36
- faraday-em_http (1.0.0)
37
- faraday-em_synchrony (1.0.0)
38
- faraday-excon (1.1.0)
39
- faraday-httpclient (1.0.1)
40
- faraday-net_http (1.0.1)
41
- faraday-net_http_persistent (1.2.0)
42
- faraday-patron (1.0.0)
43
- faraday-rack (1.0.0)
27
+ faraday-net_http (2.1.0)
44
28
  gems (1.2.0)
45
29
  google-api-client (0.53.0)
46
30
  google-apis-core (~> 0.1)
47
31
  google-apis-generator (~> 0.1)
48
- google-apis-core (0.4.1)
32
+ google-apis-core (0.7.0)
49
33
  addressable (~> 2.5, >= 2.5.1)
50
34
  googleauth (>= 0.16.2, < 2.a)
51
35
  httpclient (>= 2.8.1, < 3.a)
@@ -54,39 +38,39 @@ GEM
54
38
  retriable (>= 2.0, < 4.a)
55
39
  rexml
56
40
  webrick
57
- google-apis-discovery_v1 (0.6.0)
58
- google-apis-core (>= 0.4, < 2.a)
59
- google-apis-generator (0.4.0)
41
+ google-apis-discovery_v1 (0.11.0)
42
+ google-apis-core (>= 0.7, < 2.a)
43
+ google-apis-generator (0.9.0)
60
44
  activesupport (>= 5.0)
61
45
  gems (~> 1.2)
62
- google-apis-core (>= 0.4, < 2.a)
46
+ google-apis-core (>= 0.7, < 2.a)
63
47
  google-apis-discovery_v1 (~> 0.5)
64
48
  thor (>= 0.20, < 2.a)
65
- googleauth (0.17.1)
66
- faraday (>= 0.17.3, < 2.0)
49
+ googleauth (1.2.0)
50
+ faraday (>= 0.17.3, < 3.a)
67
51
  jwt (>= 1.4, < 3.0)
68
52
  memoist (~> 0.16)
69
53
  multi_json (~> 1.11)
70
54
  os (>= 0.9, < 2.0)
71
- signet (~> 0.15)
55
+ signet (>= 0.16, < 2.a)
72
56
  httpclient (2.8.3)
73
- i18n (1.8.10)
57
+ i18n (1.12.0)
74
58
  concurrent-ruby (~> 1.0)
75
- jwt (2.2.3)
59
+ json (2.6.2)
60
+ jwt (2.4.1)
76
61
  memoist (0.16.2)
77
- mini_mime (1.1.1)
78
- minitest (5.14.4)
62
+ mini_mime (1.1.2)
63
+ minitest (5.16.2)
79
64
  multi_json (1.15.0)
80
- multipart-post (2.1.1)
81
- os (1.1.1)
82
- parallel (1.20.1)
83
- parser (3.0.2.0)
65
+ os (1.1.4)
66
+ parallel (1.22.1)
67
+ parser (3.1.2.0)
84
68
  ast (~> 2.4.1)
85
- public_suffix (4.0.6)
86
- rainbow (3.0.0)
69
+ public_suffix (4.0.7)
70
+ rainbow (3.1.1)
87
71
  rake (13.0.3)
88
- regexp_parser (2.1.1)
89
- representable (3.1.1)
72
+ regexp_parser (2.5.0)
73
+ representable (3.2.0)
90
74
  declarative (< 0.1.0)
91
75
  trailblazer-option (>= 0.1.1, < 0.2.0)
92
76
  uber (< 0.2.0)
@@ -105,34 +89,40 @@ GEM
105
89
  diff-lcs (>= 1.2.0, < 2.0)
106
90
  rspec-support (~> 3.10.0)
107
91
  rspec-support (3.10.2)
108
- rubocop (1.18.4)
92
+ rubocop (1.33.0)
93
+ json (~> 2.3)
109
94
  parallel (~> 1.10)
110
- parser (>= 3.0.0.0)
95
+ parser (>= 3.1.0.0)
111
96
  rainbow (>= 2.2.2, < 4.0)
112
97
  regexp_parser (>= 1.8, < 3.0)
113
- rexml
114
- rubocop-ast (>= 1.8.0, < 2.0)
98
+ rexml (>= 3.2.5, < 4.0)
99
+ rubocop-ast (>= 1.19.1, < 2.0)
115
100
  ruby-progressbar (~> 1.7)
116
101
  unicode-display_width (>= 1.4.0, < 3.0)
117
- rubocop-ast (1.8.0)
118
- parser (>= 3.0.1.1)
102
+ rubocop-ast (1.19.1)
103
+ parser (>= 3.1.1.0)
104
+ rubocop-performance (1.14.3)
105
+ rubocop (>= 1.7.0, < 2.0)
106
+ rubocop-ast (>= 0.4.0)
107
+ rubocop-rspec (2.12.1)
108
+ rubocop (~> 1.31)
119
109
  ruby-progressbar (1.11.0)
120
110
  ruby2_keywords (0.0.5)
121
- signet (0.16.0)
111
+ signet (0.17.0)
122
112
  addressable (~> 2.8)
123
- faraday (>= 0.17.3, < 2.0)
113
+ faraday (>= 0.17.5, < 3.a)
124
114
  jwt (>= 1.5, < 3.0)
125
115
  multi_json (~> 1.10)
126
- thor (1.1.0)
127
- trailblazer-option (0.1.1)
128
- tzinfo (2.0.4)
116
+ thor (1.2.1)
117
+ trailblazer-option (0.1.2)
118
+ tzinfo (2.0.5)
129
119
  concurrent-ruby (~> 1.0)
130
120
  uber (0.1.0)
131
- unicode-display_width (2.0.0)
121
+ unicode-display_width (2.2.0)
132
122
  webrick (1.7.0)
133
- zeitwerk (2.4.2)
134
123
 
135
124
  PLATFORMS
125
+ arm64-darwin-21
136
126
  x86_64-darwin-19
137
127
 
138
128
  DEPENDENCIES
@@ -140,7 +130,9 @@ DEPENDENCIES
140
130
  rake (~> 13.0)
141
131
  rspec (~> 3.10)
142
132
  rubocop
133
+ rubocop-performance
134
+ rubocop-rspec
143
135
  vgcal!
144
136
 
145
137
  BUNDLED WITH
146
- 2.2.15
138
+ 2.2.33
@@ -23,8 +23,7 @@ module Vgcal
23
23
  credentials = authorizer.get_credentials user_id
24
24
  if credentials.nil?
25
25
  url = authorizer.get_authorization_url base_url: @oob_uri
26
- puts 'Open the following URL in the browser and enter the ' \
27
- "resulting code after authorization:\n" + url
26
+ puts "Open the following URL in the browser and enter the resulting code after authorization:\n#{url}"
28
27
  code = $stdin.gets
29
28
  credentials = authorizer.get_and_store_credentials_from_code(
30
29
  user_id: user_id, code: code, base_url: @oob_uri
@@ -15,9 +15,10 @@ module Vgcal
15
15
  vgcal_dir = "#{Dir.home}/.vgcal"
16
16
  cred_json = "#{vgcal_dir}/credentials.json"
17
17
  dot_env = "#{vgcal_dir}/.env"
18
- Dir.mkdir(vgcal_dir, 0o755) unless Dir.exist?(vgcal_dir)
19
- FileUtils.cp('template-credentials.json', cred_json) unless File.exist?(cred_json)
20
- FileUtils.cp('template.env', dot_env) unless File.exist?(dot_env)
18
+ gem_root = File.expand_path '../../../', __dir__
19
+ FileUtils.mkdir_p(vgcal_dir, 0o755)
20
+ FileUtils.cp(File.join(gem_root,'template-credentials.json'), cred_json) unless File.exist?(cred_json)
21
+ FileUtils.cp(File.join(gem_root,'template.env'), dot_env) unless File.exist?(dot_env)
21
22
  puts "Fix the __FIX_ME__ in #{cred_json} and #{dot_env}"
22
23
  end
23
24
 
@@ -26,7 +27,7 @@ module Vgcal
26
27
  option :'next-week', type: :boolean, aliases: '-n', desc: 'Show next week tasks'
27
28
  option :'start-date', type: :numeric, aliases: '-s', desc: 'Start date. ex.20210701'
28
29
  option :'end-date', type: :numeric, aliases: '-e', desc: 'End date. ex.20210728'
29
- option :'output', type: :string, aliases: '-o', desc: 'Output format. [text|json]'
30
+ option :output, type: :string, aliases: '-o', desc: 'Output format. [text|json]'
30
31
 
31
32
  desc 'show', 'Show google calendar'
32
33
 
@@ -38,9 +39,7 @@ module Vgcal
38
39
  case options[:output]
39
40
  when 'json'
40
41
  stdout_json(mcal.tasks(events), mcal.invited_meetings(events))
41
- when 'text'
42
- stdout_default(mcal.tasks(events), mcal.invited_meetings(events))
43
- else
42
+ when 'text', 'output', nil
44
43
  stdout_default(mcal.tasks(events), mcal.invited_meetings(events))
45
44
  end
46
45
  end
@@ -55,22 +54,22 @@ module Vgcal
55
54
 
56
55
  def stdout_json(my_tasks, invited_meetings)
57
56
  hash = {
58
- 'start_date': "#{start_date}",
59
- 'end_date': "#{end_date}",
60
- 'tasks': []
57
+ start_date: "#{start_date}",
58
+ end_date: "#{end_date}",
59
+ tasks: []
61
60
  }
62
61
  my_tasks.each do |task|
63
62
  hash[:tasks].push ({
64
- "title": task[0],
65
- "time": task[1],
66
- "task_type": 'my_task'
63
+ title: task[0],
64
+ time: task[1],
65
+ task_type: 'my_task'
67
66
  })
68
67
  end
69
68
  invited_meetings.each do |meeting|
70
69
  hash[:tasks].push ({
71
- 'title': meeting[0],
72
- 'time': meeting[1],
73
- 'task_type': 'invited_meeting'
70
+ title: meeting[0],
71
+ time: meeting[1],
72
+ task_type: 'invited_meeting'
74
73
  })
75
74
  end
76
75
  puts hash.to_json
@@ -69,7 +69,7 @@ module Vgcal
69
69
  private
70
70
 
71
71
  def my_email_address
72
- ENV['MY_EMAIL_ADDRESS']
72
+ ENV.fetch['MY_EMAIL_ADDRESS']
73
73
  end
74
74
 
75
75
  def hide_words
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.3.2'
4
+ VERSION = '0.4.2'
5
5
  end
data/vgcal.gemspec CHANGED
@@ -15,6 +15,7 @@ Gem::Specification.new do |spec|
15
15
  spec.homepage = "https://github.com/st1t/vgcal"
16
16
  spec.license = "MIT"
17
17
  spec.required_ruby_version = Gem::Requirement.new(">= 3.0.1")
18
+ spec.metadata['rubygems_mfa_required'] = "true"
18
19
 
19
20
  spec.files = Dir.chdir(File.expand_path(__dir__)) do
20
21
  `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
@@ -27,6 +28,8 @@ Gem::Specification.new do |spec|
27
28
  spec.add_development_dependency "rake", "~> 13.0"
28
29
  spec.add_development_dependency "rspec", "~> 3.10"
29
30
  spec.add_development_dependency "rubocop"
31
+ spec.add_development_dependency "rubocop-performance"
32
+ spec.add_development_dependency "rubocop-rspec"
30
33
  spec.add_runtime_dependency "thor", "~> 1.1"
31
34
  spec.add_runtime_dependency "google-api-client"
32
35
  spec.add_runtime_dependency "dotenv"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vgcal
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shota Ito
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-09-05 00:00:00.000000000 Z
11
+ date: 2022-08-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -66,6 +66,34 @@ dependencies:
66
66
  - - ">="
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rubocop-performance
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rubocop-rspec
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
69
97
  - !ruby/object:Gem::Dependency
70
98
  name: thor
71
99
  requirement: !ruby/object:Gem::Requirement
@@ -119,6 +147,8 @@ files:
119
147
  - ".github/workflows/ruby.yml"
120
148
  - ".gitignore"
121
149
  - ".rspec"
150
+ - ".rubocop.yml"
151
+ - ".rubocop_todo.yml"
122
152
  - ".ruby-version"
123
153
  - Gemfile
124
154
  - Gemfile.lock
@@ -139,7 +169,8 @@ files:
139
169
  homepage: https://github.com/st1t/vgcal
140
170
  licenses:
141
171
  - MIT
142
- metadata: {}
172
+ metadata:
173
+ rubygems_mfa_required: 'true'
143
174
  post_install_message:
144
175
  rdoc_options: []
145
176
  require_paths:
@@ -155,7 +186,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
155
186
  - !ruby/object:Gem::Version
156
187
  version: '0'
157
188
  requirements: []
158
- rubygems_version: 3.2.15
189
+ rubygems_version: 3.2.33
159
190
  signing_key:
160
191
  specification_version: 4
161
192
  summary: "%q{The vgcal command simplifies the display of Google Calendar events.}"