rpdoc 0.2.2 → 0.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 43e4c8339b0e0c0284081a6fc379ba6c7f32cd2da141e183f9016ed043d5652c
4
- data.tar.gz: 2e30093e3e338f2668fb44b18e94d907062fd1fa01c943c8f1c33c10cf4fb0bb
3
+ metadata.gz: 34c04dbb846228167a01b3532f6f910b4ae6684a1dfa68250b482b9cdf309c70
4
+ data.tar.gz: 248fe29367aed3b77f2dec9fdedc3ed9c9ab767f66d30cb6adb310bfdec4dae5
5
5
  SHA512:
6
- metadata.gz: 2e396d921816259e7055d7b78338c163a3d5f00e022487ef1517f10ae2fbd957a0a1148d0d1a87e03d1cab2ca39dd6cd11343946c9ded6fb5c731b9344270ea4
7
- data.tar.gz: d97e2ff1940687757a3576705f548678da23152c7e6ffbd0264ef958e69b0e83534801f70b833758ac4aa557cd665a7fd9952d77229fc9eeda25daab3dc69dae
6
+ metadata.gz: 76649175b847bc1aff6260ab0f3638ab5d045688c3131bf3f3d5e88346b629054eb26bb5bfc5cbfd86b9d407f87515ff838366e8a44b54da81fe4f2ae2f648b5
7
+ data.tar.gz: c2081ade453e9c2e7cb9740bfa0f9684d1e5f204f2bbcb750c599bb7fde73a4440d9770cf234e0a920aa40d75c053f5b5f8267458a366dd0908ab2f72f5ea41e
data/.gitlab-ci.yml CHANGED
@@ -1,21 +1,29 @@
1
+ include:
2
+ - project: "kdanmobile/deployment/cluster-cicd-config"
3
+ ref: master
4
+ file: "/gitlab-ci/node-brakeman-sast-upload.yaml"
5
+
1
6
  stages:
7
+ - test
8
+ - sast_upload
2
9
  - rspec
3
10
  - publish
4
11
 
5
12
  rspec:
6
13
  stage: rspec
7
- image: ruby:3.2.1
14
+ image: ruby:3.4.5
8
15
  tags:
9
16
  - arm64
10
17
  script:
11
18
  - bundle install
12
- - RPDOC_ENABLE=false rspec spec -fd
13
- only:
14
- - master
19
+ - RPDOC_ENABLE=false bundle exec rspec spec
20
+ rules:
21
+ - if: $CI_PIPELINE_SOURCE == "merge_request_event"
22
+ - if: $CI_COMMIT_BRANCH == "master"
15
23
 
16
24
  to_gem:
17
25
  stage: publish
18
- image: ruby:3.2.1
26
+ image: ruby:3.4.5
19
27
  tags:
20
28
  - arm64
21
29
  script:
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --format documentation
data/.ruby-gemset ADDED
@@ -0,0 +1 @@
1
+ rpdoc
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 3.4.5
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [0.2.4] - 2025-07-16
2
+ - Update gemspec.
3
+ - Update CI to use Ruby 3.4.5.
4
+
5
+ ## [0.2.3] - 2024-10-09
6
+ - Support rails 7+.
7
+
1
8
  ## [0.2.2] - 2024-06-28
2
9
  - Fix push_and_update strategy bug.
3
10
 
data/Gemfile.lock CHANGED
@@ -1,153 +1,205 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rpdoc (0.2.0)
5
- activesupport (~> 6.1)
6
- json_requester (~> 1.0)
4
+ rpdoc (0.2.4)
5
+ activesupport (>= 7.1)
6
+ json_requester (>= 2.0.1)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- actionpack (6.1.7.6)
12
- actionview (= 6.1.7.6)
13
- activesupport (= 6.1.7.6)
14
- rack (~> 2.0, >= 2.0.9)
11
+ actionpack (8.0.2)
12
+ actionview (= 8.0.2)
13
+ activesupport (= 8.0.2)
14
+ nokogiri (>= 1.8.5)
15
+ rack (>= 2.2.4)
16
+ rack-session (>= 1.0.1)
15
17
  rack-test (>= 0.6.3)
16
- rails-dom-testing (~> 2.0)
17
- rails-html-sanitizer (~> 1.0, >= 1.2.0)
18
- actionview (6.1.7.6)
19
- activesupport (= 6.1.7.6)
18
+ rails-dom-testing (~> 2.2)
19
+ rails-html-sanitizer (~> 1.6)
20
+ useragent (~> 0.16)
21
+ actionview (8.0.2)
22
+ activesupport (= 8.0.2)
20
23
  builder (~> 3.1)
21
- erubi (~> 1.4)
22
- rails-dom-testing (~> 2.0)
23
- rails-html-sanitizer (~> 1.1, >= 1.2.0)
24
- activesupport (6.1.7.6)
25
- concurrent-ruby (~> 1.0, >= 1.0.2)
24
+ erubi (~> 1.11)
25
+ rails-dom-testing (~> 2.2)
26
+ rails-html-sanitizer (~> 1.6)
27
+ activesupport (8.0.2)
28
+ base64
29
+ benchmark (>= 0.3)
30
+ bigdecimal
31
+ concurrent-ruby (~> 1.0, >= 1.3.1)
32
+ connection_pool (>= 2.2.5)
33
+ drb
26
34
  i18n (>= 1.6, < 2)
35
+ logger (>= 1.4.2)
27
36
  minitest (>= 5.1)
28
- tzinfo (~> 2.0)
29
- zeitwerk (~> 2.3)
30
- ast (2.4.2)
31
- base64 (0.1.1)
32
- builder (3.2.4)
37
+ securerandom (>= 0.3)
38
+ tzinfo (~> 2.0, >= 2.0.5)
39
+ uri (>= 0.13.1)
40
+ ast (2.4.3)
41
+ base64 (0.3.0)
42
+ benchmark (0.4.1)
43
+ bigdecimal (3.2.2)
44
+ builder (3.3.0)
33
45
  coderay (1.1.3)
34
- concurrent-ruby (1.2.2)
46
+ concurrent-ruby (1.3.5)
47
+ connection_pool (2.5.3)
35
48
  crass (1.0.6)
36
- diff-lcs (1.5.0)
37
- erubi (1.12.0)
38
- faraday (1.10.3)
39
- faraday-em_http (~> 1.0)
40
- faraday-em_synchrony (~> 1.0)
41
- faraday-excon (~> 1.1)
42
- faraday-httpclient (~> 1.0)
43
- faraday-multipart (~> 1.0)
44
- faraday-net_http (~> 1.0)
45
- faraday-net_http_persistent (~> 1.0)
46
- faraday-patron (~> 1.0)
47
- faraday-rack (~> 1.0)
48
- faraday-retry (~> 1.0)
49
- ruby2_keywords (>= 0.0.4)
50
- faraday-em_http (1.0.0)
51
- faraday-em_synchrony (1.0.0)
52
- faraday-excon (1.1.0)
53
- faraday-httpclient (1.0.1)
54
- faraday-multipart (1.0.4)
55
- multipart-post (~> 2)
56
- faraday-net_http (1.0.1)
57
- faraday-net_http_persistent (1.2.0)
58
- faraday-patron (1.0.0)
59
- faraday-rack (1.0.0)
60
- faraday-retry (1.0.3)
61
- i18n (1.14.1)
49
+ date (3.4.1)
50
+ diff-lcs (1.6.2)
51
+ drb (2.2.3)
52
+ erb (5.0.2)
53
+ erubi (1.13.1)
54
+ faraday (2.13.2)
55
+ faraday-net_http (>= 2.0, < 3.5)
56
+ json
57
+ logger
58
+ faraday-multipart (1.1.1)
59
+ multipart-post (~> 2.0)
60
+ faraday-net_http (3.4.1)
61
+ net-http (>= 0.5.0)
62
+ i18n (1.14.7)
62
63
  concurrent-ruby (~> 1.0)
63
- json (2.6.3)
64
- json_requester (1.1.0)
65
- faraday (~> 1.0, >= 1.0.0)
66
- language_server-protocol (3.17.0.3)
67
- loofah (2.21.3)
64
+ io-console (0.8.1)
65
+ irb (1.15.2)
66
+ pp (>= 0.6.0)
67
+ rdoc (>= 4.0.0)
68
+ reline (>= 0.4.2)
69
+ json (2.13.0)
70
+ json_requester (2.0.1)
71
+ faraday (~> 2.0, >= 2.0.1)
72
+ faraday-multipart (~> 1.1.0)
73
+ language_server-protocol (3.17.0.5)
74
+ lint_roller (1.1.0)
75
+ logger (1.7.0)
76
+ loofah (2.24.1)
68
77
  crass (~> 1.0.2)
69
78
  nokogiri (>= 1.12.0)
70
- method_source (1.0.0)
71
- minitest (5.19.0)
72
- multipart-post (2.4.0)
73
- nokogiri (1.15.4-arm64-darwin)
79
+ method_source (1.1.0)
80
+ minitest (5.25.5)
81
+ multipart-post (2.4.1)
82
+ net-http (0.6.0)
83
+ uri
84
+ nokogiri (1.18.9-aarch64-linux-gnu)
74
85
  racc (~> 1.4)
75
- nokogiri (1.15.4-x86_64-darwin)
86
+ nokogiri (1.18.9-aarch64-linux-musl)
76
87
  racc (~> 1.4)
77
- parallel (1.23.0)
78
- parser (3.2.2.3)
88
+ nokogiri (1.18.9-arm-linux-gnu)
89
+ racc (~> 1.4)
90
+ nokogiri (1.18.9-arm-linux-musl)
91
+ racc (~> 1.4)
92
+ nokogiri (1.18.9-arm64-darwin)
93
+ racc (~> 1.4)
94
+ nokogiri (1.18.9-x86_64-darwin)
95
+ racc (~> 1.4)
96
+ nokogiri (1.18.9-x86_64-linux-gnu)
97
+ racc (~> 1.4)
98
+ nokogiri (1.18.9-x86_64-linux-musl)
99
+ racc (~> 1.4)
100
+ parallel (1.27.0)
101
+ parser (3.3.8.0)
79
102
  ast (~> 2.4.1)
80
103
  racc
81
- pry (0.14.2)
104
+ pp (0.6.2)
105
+ prettyprint
106
+ prettyprint (0.2.0)
107
+ prism (1.4.0)
108
+ pry (0.15.2)
82
109
  coderay (~> 1.1)
83
110
  method_source (~> 1.0)
84
- racc (1.7.1)
85
- rack (2.2.8)
86
- rack-test (2.1.0)
111
+ psych (5.2.6)
112
+ date
113
+ stringio
114
+ racc (1.8.1)
115
+ rack (3.1.16)
116
+ rack-session (2.1.1)
117
+ base64 (>= 0.1.0)
118
+ rack (>= 3.0.0)
119
+ rack-test (2.2.0)
87
120
  rack (>= 1.3)
88
- rails-dom-testing (2.2.0)
121
+ rackup (2.2.1)
122
+ rack (>= 3)
123
+ rails-dom-testing (2.3.0)
89
124
  activesupport (>= 5.0.0)
90
125
  minitest
91
126
  nokogiri (>= 1.6)
92
- rails-html-sanitizer (1.6.0)
127
+ rails-html-sanitizer (1.6.2)
93
128
  loofah (~> 2.21)
94
- nokogiri (~> 1.14)
95
- railties (6.1.7.6)
96
- actionpack (= 6.1.7.6)
97
- activesupport (= 6.1.7.6)
98
- method_source
129
+ nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
130
+ railties (8.0.2)
131
+ actionpack (= 8.0.2)
132
+ activesupport (= 8.0.2)
133
+ irb (~> 1.13)
134
+ rackup (>= 1.0.0)
99
135
  rake (>= 12.2)
100
- thor (~> 1.0)
136
+ thor (~> 1.0, >= 1.2.2)
137
+ zeitwerk (~> 2.6)
101
138
  rainbow (3.1.1)
102
- rake (13.0.6)
103
- regexp_parser (2.8.1)
104
- rexml (3.2.6)
105
- rspec (3.12.0)
106
- rspec-core (~> 3.12.0)
107
- rspec-expectations (~> 3.12.0)
108
- rspec-mocks (~> 3.12.0)
109
- rspec-core (3.12.2)
110
- rspec-support (~> 3.12.0)
111
- rspec-expectations (3.12.3)
139
+ rake (13.3.0)
140
+ rdoc (6.14.2)
141
+ erb
142
+ psych (>= 4.0.0)
143
+ regexp_parser (2.10.0)
144
+ reline (0.6.1)
145
+ io-console (~> 0.5)
146
+ rspec (3.13.1)
147
+ rspec-core (~> 3.13.0)
148
+ rspec-expectations (~> 3.13.0)
149
+ rspec-mocks (~> 3.13.0)
150
+ rspec-core (3.13.5)
151
+ rspec-support (~> 3.13.0)
152
+ rspec-expectations (3.13.5)
112
153
  diff-lcs (>= 1.2.0, < 2.0)
113
- rspec-support (~> 3.12.0)
114
- rspec-mocks (3.12.6)
154
+ rspec-support (~> 3.13.0)
155
+ rspec-mocks (3.13.5)
115
156
  diff-lcs (>= 1.2.0, < 2.0)
116
- rspec-support (~> 3.12.0)
117
- rspec-support (3.12.1)
118
- rubocop (1.56.2)
119
- base64 (~> 0.1.1)
157
+ rspec-support (~> 3.13.0)
158
+ rspec-support (3.13.4)
159
+ rubocop (1.78.0)
120
160
  json (~> 2.3)
121
- language_server-protocol (>= 3.17.0)
161
+ language_server-protocol (~> 3.17.0.2)
162
+ lint_roller (~> 1.1.0)
122
163
  parallel (~> 1.10)
123
- parser (>= 3.2.2.3)
164
+ parser (>= 3.3.0.2)
124
165
  rainbow (>= 2.2.2, < 4.0)
125
- regexp_parser (>= 1.8, < 3.0)
126
- rexml (>= 3.2.5, < 4.0)
127
- rubocop-ast (>= 1.28.1, < 2.0)
166
+ regexp_parser (>= 2.9.3, < 3.0)
167
+ rubocop-ast (>= 1.45.1, < 2.0)
128
168
  ruby-progressbar (~> 1.7)
129
- unicode-display_width (>= 2.4.0, < 3.0)
130
- rubocop-ast (1.29.0)
131
- parser (>= 3.2.1.0)
169
+ unicode-display_width (>= 2.4.0, < 4.0)
170
+ rubocop-ast (1.46.0)
171
+ parser (>= 3.3.7.2)
172
+ prism (~> 1.4)
132
173
  ruby-progressbar (1.13.0)
133
- ruby2_keywords (0.0.5)
134
- thor (1.2.2)
174
+ securerandom (0.4.1)
175
+ stringio (3.1.7)
176
+ thor (1.4.0)
135
177
  tzinfo (2.0.6)
136
178
  concurrent-ruby (~> 1.0)
137
- unicode-display_width (2.4.2)
138
- zeitwerk (2.6.11)
179
+ unicode-display_width (3.1.4)
180
+ unicode-emoji (~> 4.0, >= 4.0.4)
181
+ unicode-emoji (4.0.4)
182
+ uri (1.0.3)
183
+ useragent (0.16.11)
184
+ zeitwerk (2.7.3)
139
185
 
140
186
  PLATFORMS
141
- arm64-darwin-20
142
- arm64-darwin-22
143
- x86_64-darwin-19
187
+ aarch64-linux-gnu
188
+ aarch64-linux-musl
189
+ arm-linux-gnu
190
+ arm-linux-musl
191
+ arm64-darwin
192
+ ruby
193
+ x86_64-darwin
194
+ x86_64-linux-gnu
195
+ x86_64-linux-musl
144
196
 
145
197
  DEPENDENCIES
146
- pry (~> 0.14.1)
147
- railties (~> 6.1.4)
198
+ pry (>= 0.14.1)
199
+ railties (>= 6.1.4)
148
200
  rpdoc!
149
- rspec (~> 3.0)
150
- rubocop (~> 1.0)
201
+ rspec (>= 3.13)
202
+ rubocop (>= 1.78)
151
203
 
152
204
  BUNDLED WITH
153
- 2.3.4
205
+ 2.7.0
data/VERSION.md CHANGED
@@ -1 +1 @@
1
- 0.2.2
1
+ 0.2.4
@@ -10,16 +10,16 @@ Rpdoc.configure do |config|
10
10
 
11
11
  # (Optional) Workspace that your collection will be pushed to. Default your account's personal workspace.
12
12
  # config.collection_workspace = 'collection_workspace'
13
-
13
+
14
14
  # (Optional) Your existing collection uid. Will update it when using :push_and_update push strategy.
15
15
  # config.collection_uid = 'collection_uid'
16
-
16
+
17
17
  # (Optional) Collection name.
18
18
  # config.collection_name = 'Rpdoc'
19
19
 
20
20
  # (Optional) Specs in folder are used for json data generation.
21
21
  # config.rspec_root = 'spec'
22
-
22
+
23
23
  # (Optional) Your Rails server API host.
24
24
  # config.rspec_server_host = '{{server_host}}'
25
25
 
data/lib/rpdoc/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Rpdoc
4
- VERSION = "0.2.2"
4
+ VERSION = "0.2.4"
5
5
  end
data/rpdoc.gemspec CHANGED
@@ -27,11 +27,11 @@ Gem::Specification.new do |spec|
27
27
  spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
28
28
  spec.require_paths = ["lib"]
29
29
 
30
- spec.add_dependency 'json_requester', '~> 1.1.1'
31
- spec.add_dependency 'activesupport', '~> 6.1'
30
+ spec.add_dependency "activesupport", ">= 7.1"
31
+ spec.add_dependency "json_requester", ">= 2.0.1"
32
32
 
33
- spec.add_development_dependency 'railties', '~> 6.1.4'
34
- spec.add_development_dependency 'rspec', '~> 3.0'
35
- spec.add_development_dependency 'pry', '~> 0.14.1'
36
- spec.add_development_dependency 'rubocop', '~> 1.0'
33
+ spec.add_development_dependency "pry", ">= 0.14.1"
34
+ spec.add_development_dependency "railties", ">= 6.1.4"
35
+ spec.add_development_dependency "rspec", ">= 3.13"
36
+ spec.add_development_dependency "rubocop", ">= 1.78"
37
37
  end
metadata CHANGED
@@ -1,99 +1,98 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rpdoc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - yuntai
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2024-06-28 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
- name: json_requester
13
+ name: activesupport
15
14
  requirement: !ruby/object:Gem::Requirement
16
15
  requirements:
17
- - - "~>"
16
+ - - ">="
18
17
  - !ruby/object:Gem::Version
19
- version: 1.1.1
18
+ version: '7.1'
20
19
  type: :runtime
21
20
  prerelease: false
22
21
  version_requirements: !ruby/object:Gem::Requirement
23
22
  requirements:
24
- - - "~>"
23
+ - - ">="
25
24
  - !ruby/object:Gem::Version
26
- version: 1.1.1
25
+ version: '7.1'
27
26
  - !ruby/object:Gem::Dependency
28
- name: activesupport
27
+ name: json_requester
29
28
  requirement: !ruby/object:Gem::Requirement
30
29
  requirements:
31
- - - "~>"
30
+ - - ">="
32
31
  - !ruby/object:Gem::Version
33
- version: '6.1'
32
+ version: 2.0.1
34
33
  type: :runtime
35
34
  prerelease: false
36
35
  version_requirements: !ruby/object:Gem::Requirement
37
36
  requirements:
38
- - - "~>"
37
+ - - ">="
39
38
  - !ruby/object:Gem::Version
40
- version: '6.1'
39
+ version: 2.0.1
41
40
  - !ruby/object:Gem::Dependency
42
- name: railties
41
+ name: pry
43
42
  requirement: !ruby/object:Gem::Requirement
44
43
  requirements:
45
- - - "~>"
44
+ - - ">="
46
45
  - !ruby/object:Gem::Version
47
- version: 6.1.4
46
+ version: 0.14.1
48
47
  type: :development
49
48
  prerelease: false
50
49
  version_requirements: !ruby/object:Gem::Requirement
51
50
  requirements:
52
- - - "~>"
51
+ - - ">="
53
52
  - !ruby/object:Gem::Version
54
- version: 6.1.4
53
+ version: 0.14.1
55
54
  - !ruby/object:Gem::Dependency
56
- name: rspec
55
+ name: railties
57
56
  requirement: !ruby/object:Gem::Requirement
58
57
  requirements:
59
- - - "~>"
58
+ - - ">="
60
59
  - !ruby/object:Gem::Version
61
- version: '3.0'
60
+ version: 6.1.4
62
61
  type: :development
63
62
  prerelease: false
64
63
  version_requirements: !ruby/object:Gem::Requirement
65
64
  requirements:
66
- - - "~>"
65
+ - - ">="
67
66
  - !ruby/object:Gem::Version
68
- version: '3.0'
67
+ version: 6.1.4
69
68
  - !ruby/object:Gem::Dependency
70
- name: pry
69
+ name: rspec
71
70
  requirement: !ruby/object:Gem::Requirement
72
71
  requirements:
73
- - - "~>"
72
+ - - ">="
74
73
  - !ruby/object:Gem::Version
75
- version: 0.14.1
74
+ version: '3.13'
76
75
  type: :development
77
76
  prerelease: false
78
77
  version_requirements: !ruby/object:Gem::Requirement
79
78
  requirements:
80
- - - "~>"
79
+ - - ">="
81
80
  - !ruby/object:Gem::Version
82
- version: 0.14.1
81
+ version: '3.13'
83
82
  - !ruby/object:Gem::Dependency
84
83
  name: rubocop
85
84
  requirement: !ruby/object:Gem::Requirement
86
85
  requirements:
87
- - - "~>"
86
+ - - ">="
88
87
  - !ruby/object:Gem::Version
89
- version: '1.0'
88
+ version: '1.78'
90
89
  type: :development
91
90
  prerelease: false
92
91
  version_requirements: !ruby/object:Gem::Requirement
93
92
  requirements:
94
- - - "~>"
93
+ - - ">="
95
94
  - !ruby/object:Gem::Version
96
- version: '1.0'
95
+ version: '1.78'
97
96
  description: Rpdoc is a simple Postman API documentation tool, which transforms RSpec
98
97
  examples to Postman collection.
99
98
  email:
@@ -109,7 +108,10 @@ files:
109
108
  - ".gitlab/issue_templates/Default.md"
110
109
  - ".gitlab/merge_request_templates/.keep"
111
110
  - ".gitlab/merge_request_templates/Default.md"
111
+ - ".rspec"
112
112
  - ".rubocop.yml"
113
+ - ".ruby-gemset"
114
+ - ".ruby-version"
113
115
  - CHANGELOG.md
114
116
  - Gemfile
115
117
  - Gemfile.lock
@@ -136,7 +138,6 @@ licenses:
136
138
  metadata:
137
139
  source_code_uri: https://github.com/kdan-mobile-software-ltd/rpdoc
138
140
  changelog_uri: https://github.com/kdan-mobile-software-ltd/rpdoc/blob/master/CHANGELOG.md
139
- post_install_message:
140
141
  rdoc_options: []
141
142
  require_paths:
142
143
  - lib
@@ -151,8 +152,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
151
152
  - !ruby/object:Gem::Version
152
153
  version: '0'
153
154
  requirements: []
154
- rubygems_version: 3.4.6
155
- signing_key:
155
+ rubygems_version: 3.6.9
156
156
  specification_version: 4
157
157
  summary: RSpec to Postman Documentation Tool
158
158
  test_files: []