rpdoc 0.3.1 → 0.3.2
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 +4 -4
- data/.rubocop.yml +1 -1
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +9 -9
- data/lib/rpdoc/version.rb +1 -1
- data/rpdoc.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e40662fbf5bf38f05614473952e0daad1fbd30de69f9587e595785bcfb9bbe05
|
|
4
|
+
data.tar.gz: efa6780201cf80d7c3bbb584e5f17f651d8b9a0bd4ccf4edf19d281b5ddd48a3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ef9300e8e12a8638825cbaa4df8065829461657c3afd195f21fab2b5e47294d322fd6e87f4cca8a29fe69ac373ba9c9e8d02c13facd4120012d5623200952cf2
|
|
7
|
+
data.tar.gz: ad1126a812272b2dc204b21a74654f8c813caee34916348e15daf35e02ff7c55183a4d0e263657bcc8cab4efa1925b83129ff7b720d6190a678411aa3711c1ad
|
data/.rubocop.yml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
## [0.3.2] - 2026-04-14
|
|
2
|
+
- Update required Ruby version to `>= 3.2.0` in `rpdoc.gemspec` and `.rubocop.yml` to align with the latest security and performance requirements.
|
|
3
|
+
- activesupport to `8.1.3` to address the latest security and performance requirements.
|
|
4
|
+
|
|
1
5
|
## [0.3.1] - 2026-04-08
|
|
2
6
|
- Update `rack-session` to `2.1.2` to address the latest critical session security advisory.
|
|
3
7
|
- Update `rack` to `3.2.6` to pick up the latest Rack security fixes from Dependabot alerts.
|
data/Gemfile.lock
CHANGED
|
@@ -8,9 +8,9 @@ PATH
|
|
|
8
8
|
GEM
|
|
9
9
|
remote: https://rubygems.org/
|
|
10
10
|
specs:
|
|
11
|
-
actionpack (8.1.
|
|
12
|
-
actionview (= 8.1.
|
|
13
|
-
activesupport (= 8.1.
|
|
11
|
+
actionpack (8.1.3)
|
|
12
|
+
actionview (= 8.1.3)
|
|
13
|
+
activesupport (= 8.1.3)
|
|
14
14
|
nokogiri (>= 1.8.5)
|
|
15
15
|
rack (>= 2.2.4)
|
|
16
16
|
rack-session (>= 1.0.1)
|
|
@@ -18,13 +18,13 @@ GEM
|
|
|
18
18
|
rails-dom-testing (~> 2.2)
|
|
19
19
|
rails-html-sanitizer (~> 1.6)
|
|
20
20
|
useragent (~> 0.16)
|
|
21
|
-
actionview (8.1.
|
|
22
|
-
activesupport (= 8.1.
|
|
21
|
+
actionview (8.1.3)
|
|
22
|
+
activesupport (= 8.1.3)
|
|
23
23
|
builder (~> 3.1)
|
|
24
24
|
erubi (~> 1.11)
|
|
25
25
|
rails-dom-testing (~> 2.2)
|
|
26
26
|
rails-html-sanitizer (~> 1.6)
|
|
27
|
-
activesupport (8.1.
|
|
27
|
+
activesupport (8.1.3)
|
|
28
28
|
base64
|
|
29
29
|
bigdecimal
|
|
30
30
|
concurrent-ruby (~> 1.0, >= 1.3.1)
|
|
@@ -138,9 +138,9 @@ GEM
|
|
|
138
138
|
rails-html-sanitizer (1.7.0)
|
|
139
139
|
loofah (~> 2.25)
|
|
140
140
|
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)
|
|
141
|
-
railties (8.1.
|
|
142
|
-
actionpack (= 8.1.
|
|
143
|
-
activesupport (= 8.1.
|
|
141
|
+
railties (8.1.3)
|
|
142
|
+
actionpack (= 8.1.3)
|
|
143
|
+
activesupport (= 8.1.3)
|
|
144
144
|
irb (~> 1.13)
|
|
145
145
|
rackup (>= 1.0.0)
|
|
146
146
|
rake (>= 12.2)
|
data/lib/rpdoc/version.rb
CHANGED
data/rpdoc.gemspec
CHANGED
|
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
|
|
|
12
12
|
spec.description = "Rpdoc is a simple Postman API documentation tool, which transforms RSpec examples to Postman collection."
|
|
13
13
|
spec.homepage = "https://github.com/kdan-mobile-software-ltd/rpdoc"
|
|
14
14
|
spec.license = "MIT"
|
|
15
|
-
spec.required_ruby_version = Gem::Requirement.new(">= 3.
|
|
15
|
+
spec.required_ruby_version = Gem::Requirement.new(">= 3.2.0")
|
|
16
16
|
spec.metadata = {
|
|
17
17
|
"source_code_uri" => "https://github.com/kdan-mobile-software-ltd/rpdoc",
|
|
18
18
|
"changelog_uri" => "https://github.com/kdan-mobile-software-ltd/rpdoc/blob/master/CHANGELOG.md",
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rpdoc
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- yuntai
|
|
@@ -102,7 +102,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
102
102
|
requirements:
|
|
103
103
|
- - ">="
|
|
104
104
|
- !ruby/object:Gem::Version
|
|
105
|
-
version: 3.
|
|
105
|
+
version: 3.2.0
|
|
106
106
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
107
107
|
requirements:
|
|
108
108
|
- - ">="
|