tests_doc 0.0.6 → 0.0.7
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/.ruby-version +1 -1
- data/CHANGELOG.md +5 -0
- data/lib/tests_doc/record_spec_helper.rb +4 -4
- data/lib/tests_doc/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '08fabe63b0beb06ae0b3a0527d3b647232a19cf75623189fb82e601512cfc1a5'
|
|
4
|
+
data.tar.gz: 369b04896ccc50b731addb515548a4d4e23bc68be2001b4e85e17b1af43d31c2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 68fbfb3ad7f2f06ba667907dc4deb48c4cfe65fd1e98e37e5aab9bbf306ef670ef6a5cd5e28517301d24b4031f57d7d70914e0a6c38fde4386700b98fcf1a075
|
|
7
|
+
data.tar.gz: 43b7a4d74c6204b9107f7feafc6a8fc59c020a070824a9c80b408c7b33b1e24e17e5ee55da512f1de27b4a23026b584e5fa90608a8934d1a900da7d2a00b6735
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
3.0.5
|
data/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.0.7] - 2023-06-13
|
|
10
|
+
### Changed
|
|
11
|
+
- Bumps target ruby version to 3.0.5
|
|
12
|
+
- Fixes kwargs forwarding for Ruby 3
|
|
13
|
+
|
|
9
14
|
## [0.0.6] - 2022-03-16
|
|
10
15
|
### Changed
|
|
11
16
|
|
|
@@ -11,19 +11,19 @@ module TestsDoc
|
|
|
11
11
|
TestsDoc.interaction_options = nil
|
|
12
12
|
end
|
|
13
13
|
|
|
14
|
-
def get(
|
|
14
|
+
def get(*, **)
|
|
15
15
|
record_interaction { super }
|
|
16
16
|
end
|
|
17
17
|
|
|
18
|
-
def post(
|
|
18
|
+
def post(*, **)
|
|
19
19
|
record_interaction { super }
|
|
20
20
|
end
|
|
21
21
|
|
|
22
|
-
def put(
|
|
22
|
+
def put(*, **)
|
|
23
23
|
record_interaction { super }
|
|
24
24
|
end
|
|
25
25
|
|
|
26
|
-
def delete(
|
|
26
|
+
def delete(*, **)
|
|
27
27
|
record_interaction { super }
|
|
28
28
|
end
|
|
29
29
|
|
data/lib/tests_doc/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tests_doc
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jean-Richard Lai
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-06-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -101,7 +101,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
101
101
|
- !ruby/object:Gem::Version
|
|
102
102
|
version: '0'
|
|
103
103
|
requirements: []
|
|
104
|
-
rubygems_version: 3.
|
|
104
|
+
rubygems_version: 3.2.33
|
|
105
105
|
signing_key:
|
|
106
106
|
specification_version: 4
|
|
107
107
|
summary: Rspec requests file to markdown
|