rpdoc 0.2.3 → 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: c0e74b2462fae4d9d94ab39cc2a6917f7d9ba1ddbeb5bb7fcda0b7fd29f41ac2
4
- data.tar.gz: aec89dd3a4202f7828f4386d26a92544b6496a105270d821abe232d2bf65f5b5
3
+ metadata.gz: 34c04dbb846228167a01b3532f6f910b4ae6684a1dfa68250b482b9cdf309c70
4
+ data.tar.gz: 248fe29367aed3b77f2dec9fdedc3ed9c9ab767f66d30cb6adb310bfdec4dae5
5
5
  SHA512:
6
- metadata.gz: 1d4b5e41993d1b046a5c6f38ebd29cb79cbbd2b4e786877a8a7bc0cc5afa9609573606718aa096a6f1e96dd2921b98eb32b5a8d567ab5faee68a33d90d2f5c3b
7
- data.tar.gz: e438c1f958050316081bdcaba51ac05e1b73b0a0fcb1f44423196158cd829ebaa484a5f6783f58eb4fb0971bdcd500075b88877aabc38b3c0d0a5b88e3ce04fc
6
+ metadata.gz: 76649175b847bc1aff6260ab0f3638ab5d045688c3131bf3f3d5e88346b629054eb26bb5bfc5cbfd86b9d407f87515ff838366e8a44b54da81fe4f2ae2f648b5
7
+ data.tar.gz: c2081ade453e9c2e7cb9740bfa0f9684d1e5f204f2bbcb750c599bb7fde73a4440d9770cf234e0a920aa40d75c053f5b5f8267458a366dd0908ab2f72f5ea41e
data/.gitlab-ci.yml CHANGED
@@ -11,18 +11,19 @@ stages:
11
11
 
12
12
  rspec:
13
13
  stage: rspec
14
- image: ruby:3.3.5
14
+ image: ruby:3.4.5
15
15
  tags:
16
16
  - arm64
17
17
  script:
18
18
  - bundle install
19
- - RPDOC_ENABLE=false rspec spec -fd
20
- only:
21
- - 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"
22
23
 
23
24
  to_gem:
24
25
  stage: publish
25
- image: ruby:3.3.5
26
+ image: ruby:3.4.5
26
27
  tags:
27
28
  - arm64
28
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,7 @@
1
+ ## [0.2.4] - 2025-07-16
2
+ - Update gemspec.
3
+ - Update CI to use Ruby 3.4.5.
4
+
1
5
  ## [0.2.3] - 2024-10-09
2
6
  - Support rails 7+.
3
7
 
data/Gemfile.lock CHANGED
@@ -1,32 +1,32 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rpdoc (0.2.3)
5
- activesupport (>= 6.1)
6
- json_requester (>= 1.1.1)
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 (7.2.1)
12
- actionview (= 7.2.1)
13
- activesupport (= 7.2.1)
11
+ actionpack (8.0.2)
12
+ actionview (= 8.0.2)
13
+ activesupport (= 8.0.2)
14
14
  nokogiri (>= 1.8.5)
15
- racc
16
- rack (>= 2.2.4, < 3.2)
15
+ rack (>= 2.2.4)
17
16
  rack-session (>= 1.0.1)
18
17
  rack-test (>= 0.6.3)
19
18
  rails-dom-testing (~> 2.2)
20
19
  rails-html-sanitizer (~> 1.6)
21
20
  useragent (~> 0.16)
22
- actionview (7.2.1)
23
- activesupport (= 7.2.1)
21
+ actionview (8.0.2)
22
+ activesupport (= 8.0.2)
24
23
  builder (~> 3.1)
25
24
  erubi (~> 1.11)
26
25
  rails-dom-testing (~> 2.2)
27
26
  rails-html-sanitizer (~> 1.6)
28
- activesupport (7.2.1)
27
+ activesupport (8.0.2)
29
28
  base64
29
+ benchmark (>= 0.3)
30
30
  bigdecimal
31
31
  concurrent-ruby (~> 1.0, >= 1.3.1)
32
32
  connection_pool (>= 2.2.5)
@@ -36,152 +36,170 @@ GEM
36
36
  minitest (>= 5.1)
37
37
  securerandom (>= 0.3)
38
38
  tzinfo (~> 2.0, >= 2.0.5)
39
- ast (2.4.2)
40
- base64 (0.2.0)
41
- bigdecimal (3.1.8)
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)
42
44
  builder (3.3.0)
43
45
  coderay (1.1.3)
44
- concurrent-ruby (1.3.4)
45
- connection_pool (2.4.1)
46
+ concurrent-ruby (1.3.5)
47
+ connection_pool (2.5.3)
46
48
  crass (1.0.6)
47
- diff-lcs (1.5.1)
48
- drb (2.2.1)
49
- erubi (1.13.0)
50
- faraday (1.10.4)
51
- faraday-em_http (~> 1.0)
52
- faraday-em_synchrony (~> 1.0)
53
- faraday-excon (~> 1.1)
54
- faraday-httpclient (~> 1.0)
55
- faraday-multipart (~> 1.0)
56
- faraday-net_http (~> 1.0)
57
- faraday-net_http_persistent (~> 1.0)
58
- faraday-patron (~> 1.0)
59
- faraday-rack (~> 1.0)
60
- faraday-retry (~> 1.0)
61
- ruby2_keywords (>= 0.0.4)
62
- faraday-em_http (1.0.0)
63
- faraday-em_synchrony (1.0.0)
64
- faraday-excon (1.1.0)
65
- faraday-httpclient (1.0.1)
66
- faraday-multipart (1.0.4)
67
- multipart-post (~> 2)
68
- faraday-net_http (1.0.2)
69
- faraday-net_http_persistent (1.2.0)
70
- faraday-patron (1.0.0)
71
- faraday-rack (1.0.0)
72
- faraday-retry (1.0.3)
73
- i18n (1.14.6)
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)
74
63
  concurrent-ruby (~> 1.0)
75
- io-console (0.7.2)
76
- irb (1.14.1)
64
+ io-console (0.8.1)
65
+ irb (1.15.2)
66
+ pp (>= 0.6.0)
77
67
  rdoc (>= 4.0.0)
78
68
  reline (>= 0.4.2)
79
- json (2.7.2)
80
- json_requester (1.1.2)
81
- faraday (~> 1.10, >= 1.10.3)
82
- language_server-protocol (3.17.0.3)
83
- logger (1.6.1)
84
- loofah (2.22.0)
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)
85
77
  crass (~> 1.0.2)
86
78
  nokogiri (>= 1.12.0)
87
79
  method_source (1.1.0)
88
- minitest (5.25.1)
80
+ minitest (5.25.5)
89
81
  multipart-post (2.4.1)
90
- nokogiri (1.16.7-aarch64-linux)
82
+ net-http (0.6.0)
83
+ uri
84
+ nokogiri (1.18.9-aarch64-linux-gnu)
85
+ racc (~> 1.4)
86
+ nokogiri (1.18.9-aarch64-linux-musl)
87
+ racc (~> 1.4)
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)
91
95
  racc (~> 1.4)
92
- nokogiri (1.16.7-arm64-darwin)
96
+ nokogiri (1.18.9-x86_64-linux-gnu)
93
97
  racc (~> 1.4)
94
- nokogiri (1.16.7-x86_64-darwin)
98
+ nokogiri (1.18.9-x86_64-linux-musl)
95
99
  racc (~> 1.4)
96
- parallel (1.26.3)
97
- parser (3.3.5.0)
100
+ parallel (1.27.0)
101
+ parser (3.3.8.0)
98
102
  ast (~> 2.4.1)
99
103
  racc
100
- 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)
101
109
  coderay (~> 1.1)
102
110
  method_source (~> 1.0)
103
- psych (5.1.2)
111
+ psych (5.2.6)
112
+ date
104
113
  stringio
105
114
  racc (1.8.1)
106
- rack (3.1.7)
107
- rack-session (2.0.0)
115
+ rack (3.1.16)
116
+ rack-session (2.1.1)
117
+ base64 (>= 0.1.0)
108
118
  rack (>= 3.0.0)
109
- rack-test (2.1.0)
119
+ rack-test (2.2.0)
110
120
  rack (>= 1.3)
111
- rackup (2.1.0)
121
+ rackup (2.2.1)
112
122
  rack (>= 3)
113
- webrick (~> 1.8)
114
- rails-dom-testing (2.2.0)
123
+ rails-dom-testing (2.3.0)
115
124
  activesupport (>= 5.0.0)
116
125
  minitest
117
126
  nokogiri (>= 1.6)
118
- rails-html-sanitizer (1.6.0)
127
+ rails-html-sanitizer (1.6.2)
119
128
  loofah (~> 2.21)
120
- nokogiri (~> 1.14)
121
- railties (7.2.1)
122
- actionpack (= 7.2.1)
123
- activesupport (= 7.2.1)
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)
124
133
  irb (~> 1.13)
125
134
  rackup (>= 1.0.0)
126
135
  rake (>= 12.2)
127
136
  thor (~> 1.0, >= 1.2.2)
128
137
  zeitwerk (~> 2.6)
129
138
  rainbow (3.1.1)
130
- rake (13.2.1)
131
- rdoc (6.7.0)
139
+ rake (13.3.0)
140
+ rdoc (6.14.2)
141
+ erb
132
142
  psych (>= 4.0.0)
133
- regexp_parser (2.9.2)
134
- reline (0.5.10)
143
+ regexp_parser (2.10.0)
144
+ reline (0.6.1)
135
145
  io-console (~> 0.5)
136
- rspec (3.13.0)
146
+ rspec (3.13.1)
137
147
  rspec-core (~> 3.13.0)
138
148
  rspec-expectations (~> 3.13.0)
139
149
  rspec-mocks (~> 3.13.0)
140
- rspec-core (3.13.1)
150
+ rspec-core (3.13.5)
141
151
  rspec-support (~> 3.13.0)
142
- rspec-expectations (3.13.3)
152
+ rspec-expectations (3.13.5)
143
153
  diff-lcs (>= 1.2.0, < 2.0)
144
154
  rspec-support (~> 3.13.0)
145
- rspec-mocks (3.13.2)
155
+ rspec-mocks (3.13.5)
146
156
  diff-lcs (>= 1.2.0, < 2.0)
147
157
  rspec-support (~> 3.13.0)
148
- rspec-support (3.13.1)
149
- rubocop (1.66.1)
158
+ rspec-support (3.13.4)
159
+ rubocop (1.78.0)
150
160
  json (~> 2.3)
151
- language_server-protocol (>= 3.17.0)
161
+ language_server-protocol (~> 3.17.0.2)
162
+ lint_roller (~> 1.1.0)
152
163
  parallel (~> 1.10)
153
164
  parser (>= 3.3.0.2)
154
165
  rainbow (>= 2.2.2, < 4.0)
155
- regexp_parser (>= 2.4, < 3.0)
156
- rubocop-ast (>= 1.32.2, < 2.0)
166
+ regexp_parser (>= 2.9.3, < 3.0)
167
+ rubocop-ast (>= 1.45.1, < 2.0)
157
168
  ruby-progressbar (~> 1.7)
158
- unicode-display_width (>= 2.4.0, < 3.0)
159
- rubocop-ast (1.32.3)
160
- parser (>= 3.3.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)
161
173
  ruby-progressbar (1.13.0)
162
- ruby2_keywords (0.0.5)
163
- securerandom (0.3.1)
164
- stringio (3.1.1)
165
- thor (1.3.2)
174
+ securerandom (0.4.1)
175
+ stringio (3.1.7)
176
+ thor (1.4.0)
166
177
  tzinfo (2.0.6)
167
178
  concurrent-ruby (~> 1.0)
168
- unicode-display_width (2.6.0)
169
- useragent (0.16.10)
170
- webrick (1.8.2)
171
- zeitwerk (2.6.18)
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)
172
185
 
173
186
  PLATFORMS
174
- aarch64-linux
175
187
  aarch64-linux-gnu
188
+ aarch64-linux-musl
189
+ arm-linux-gnu
190
+ arm-linux-musl
176
191
  arm64-darwin
192
+ ruby
177
193
  x86_64-darwin
194
+ x86_64-linux-gnu
195
+ x86_64-linux-musl
178
196
 
179
197
  DEPENDENCIES
180
198
  pry (>= 0.14.1)
181
199
  railties (>= 6.1.4)
182
200
  rpdoc!
183
- rspec (>= 3.0)
184
- rubocop (>= 1.0)
201
+ rspec (>= 3.13)
202
+ rubocop (>= 1.78)
185
203
 
186
204
  BUNDLED WITH
187
- 2.5.21
205
+ 2.7.0
data/VERSION.md CHANGED
@@ -1 +1 @@
1
- 0.2.3
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.3"
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.3
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-10-11 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.5.16
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: []