autodoc 0.7.5 → 0.7.6

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: d3acbd0ba59fffe8699bedf783ae8528444ec317a18ab6d4986b6cdae287f3cf
4
- data.tar.gz: 70125ed64d16b22668593f644b2a1261232c9962d14eb5418be83e9614559b3c
3
+ metadata.gz: 47721414a1cf3631034dbe786a133d21922de3a4ca0689dd5d37112c9267d638
4
+ data.tar.gz: 6b398807f034927b9c8ec8749f028c0da00a254afb6a91e09fdd03f9a188602d
5
5
  SHA512:
6
- metadata.gz: 713e695c00c58ccd8d0a5081aebfac6e125b30db230a73530206741621a45d97d022ee663ea61e1cfc061dc8f468c963a173897aa131a1d30ade9dec7a677e59
7
- data.tar.gz: d23954933a488e1bfadc57ed32bae4fa03623dcf65cc0f0e2d8392f766f8c88b083d98fa8e195f780e97020e4187e1074f497165e681cde7dd05efdedf78f124
6
+ metadata.gz: 9602be06ef5819e7edc380dd0ae990ec844cc0e38e4244144ca336de0522f213acffce64cf3df75eab269cce3a4a03bd276352fbfe518e2e9257194fa1ec6074
7
+ data.tar.gz: 45030c275296700cd24e69ac95c0ade9f7bbb6e37a4cb23f9056d9037eb97e87f38a302f29164317381bf2da383f968246198890de8a50547fcfa4a158d76cf9
data/CHANGELOG.md CHANGED
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## Unreleased
9
9
 
10
+ ## 0.7.6
11
+
12
+ ### Fixed
13
+
14
+ - Replace `URI.unescape` with `URI.decode_www_form_component` for Ruby 3 support.
15
+
10
16
  ## 0.7.5
11
17
 
12
18
  ### Fixed
@@ -106,7 +106,7 @@ module Autodoc
106
106
  end
107
107
 
108
108
  def request_query
109
- "?#{URI.unescape(request.query_string.force_encoding(Encoding::UTF_8))}" unless request.query_string.empty?
109
+ "?#{URI.decode_www_form_component(request.query_string.force_encoding(Encoding::UTF_8))}" unless request.query_string.empty?
110
110
  end
111
111
 
112
112
  def request_body_section
@@ -1,3 +1,3 @@
1
1
  module Autodoc
2
- VERSION = "0.7.5"
2
+ VERSION = "0.7.6"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: autodoc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.5
4
+ version: 0.7.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryo Nakamura
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-02-16 00:00:00.000000000 Z
11
+ date: 2021-04-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport