vgcal 0.4.0 → 0.4.3

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: 9a8a4820ac5ec51ae8603b18a047717b7c0b12a143c70b04bd4dcff5fe21a349
4
- data.tar.gz: 0e97596aecf4228d7c132a2960dcca84f8087402af8eeee99a1ad715432c6b8f
3
+ metadata.gz: a545a8b7fd19444774da6178624ae9e8a8c95526d190bd9ea5ede343a1cdba83
4
+ data.tar.gz: cfb4205bf765a6cd38238516ee25937e282ed51f04dfd3e06c5fe2a383baac9d
5
5
  SHA512:
6
- metadata.gz: b4da59f8dc452af1ddcc90303a498cdf19af129fa8aa31f69cab379c34d674fc0d1709bfb23b04f958ff319b63cc665bbe4dd17b90a459fa88443a4af1ac7787
7
- data.tar.gz: f5c2104b3e9b3928e5d16ab7a6332f32d3dc51c84964d89604a1d285550897cca16f8451017cd337c7234f8b043f41c39578119345d582d242f84ad9635fc043
6
+ metadata.gz: 99d29779689accfba08ea07c611fd3e895351c6666db5e5f900a3e1b2d91fd14ea2aeb5d86e99287986daee54fe57033ba0bcd54037709496595773d54faca13
7
+ data.tar.gz: 136a78d87d7f47ebeca93e90b898fb8cc2ecc0952174269024241635894054f5748f716e5b1e378f14c5ec75207a5cd5dab3a52e4ce70ca9fd1eb45f6427fc8b
@@ -21,3 +21,5 @@ jobs:
21
21
  run: bundle install
22
22
  - name: Run tests
23
23
  run: bundle exec rake spec
24
+ - name: Run Rubocop
25
+ run: bundle exec rubocop
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/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- vgcal (0.3.3)
4
+ vgcal (0.4.3)
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,32 +89,37 @@ 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
136
125
  arm64-darwin-21
@@ -141,6 +130,8 @@ DEPENDENCIES
141
130
  rake (~> 13.0)
142
131
  rspec (~> 3.10)
143
132
  rubocop
133
+ rubocop-performance
134
+ rubocop-rspec
144
135
  vgcal!
145
136
 
146
137
  BUNDLED WITH
@@ -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
@@ -16,7 +16,7 @@ module Vgcal
16
16
  cred_json = "#{vgcal_dir}/credentials.json"
17
17
  dot_env = "#{vgcal_dir}/.env"
18
18
  gem_root = File.expand_path '../../../', __dir__
19
- Dir.mkdir(vgcal_dir, 0o755) unless Dir.exist?(vgcal_dir)
19
+ FileUtils.mkdir_p(vgcal_dir, 0o755)
20
20
  FileUtils.cp(File.join(gem_root,'template-credentials.json'), cred_json) unless File.exist?(cred_json)
21
21
  FileUtils.cp(File.join(gem_root,'template.env'), dot_env) unless File.exist?(dot_env)
22
22
  puts "Fix the __FIX_ME__ in #{cred_json} and #{dot_env}"
@@ -27,7 +27,7 @@ module Vgcal
27
27
  option :'next-week', type: :boolean, aliases: '-n', desc: 'Show next week tasks'
28
28
  option :'start-date', type: :numeric, aliases: '-s', desc: 'Start date. ex.20210701'
29
29
  option :'end-date', type: :numeric, aliases: '-e', desc: 'End date. ex.20210728'
30
- option :'output', type: :string, aliases: '-o', desc: 'Output format. [text|json]'
30
+ option :output, type: :string, aliases: '-o', desc: 'Output format. [text|json]'
31
31
 
32
32
  desc 'show', 'Show google calendar'
33
33
 
@@ -39,9 +39,7 @@ module Vgcal
39
39
  case options[:output]
40
40
  when 'json'
41
41
  stdout_json(mcal.tasks(events), mcal.invited_meetings(events))
42
- when 'text'
43
- stdout_default(mcal.tasks(events), mcal.invited_meetings(events))
44
- else
42
+ when 'text', 'output', nil
45
43
  stdout_default(mcal.tasks(events), mcal.invited_meetings(events))
46
44
  end
47
45
  end
@@ -56,22 +54,22 @@ module Vgcal
56
54
 
57
55
  def stdout_json(my_tasks, invited_meetings)
58
56
  hash = {
59
- 'start_date': "#{start_date}",
60
- 'end_date': "#{end_date}",
61
- 'tasks': []
57
+ start_date: "#{start_date}",
58
+ end_date: "#{end_date}",
59
+ tasks: []
62
60
  }
63
61
  my_tasks.each do |task|
64
62
  hash[:tasks].push ({
65
- "title": task[0],
66
- "time": task[1],
67
- "task_type": 'my_task'
63
+ title: task[0],
64
+ time: task[1],
65
+ task_type: 'my_task'
68
66
  })
69
67
  end
70
68
  invited_meetings.each do |meeting|
71
69
  hash[:tasks].push ({
72
- 'title': meeting[0],
73
- 'time': meeting[1],
74
- 'task_type': 'invited_meeting'
70
+ title: meeting[0],
71
+ time: meeting[1],
72
+ task_type: 'invited_meeting'
75
73
  })
76
74
  end
77
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.4.0'
4
+ VERSION = '0.4.3'
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,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vgcal
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shota Ito
@@ -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.33
189
+ rubygems_version: 3.2.15
159
190
  signing_key:
160
191
  specification_version: 4
161
192
  summary: "%q{The vgcal command simplifies the display of Google Calendar events.}"