fakeit 0.7.0 → 0.7.1
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/CHANGELOG.md +9 -0
- data/Gemfile.lock +1 -1
- data/README.md +9 -5
- data/lib/fakeit/core_extensions/reference.rb +11 -0
- data/lib/fakeit/openapi/reference_error.rb +6 -0
- data/lib/fakeit/version.rb +1 -1
- metadata +8 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 93f26471f33c1f3a90dc3f473be8bdf790b14e8f737102b48d743c2fe95f6753
|
|
4
|
+
data.tar.gz: 17bb12387546a8e9239d2e219b19e84ec7e2736c6de831dfe9e6618038f9517e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fd1c8a33d1b58047aec06abce511450ca57044d0928af3e4ed5c6b5a55ce54c2d299d3a9ed9fde1e83315129a0c37aafc1f5783cd843b8c9d1705327c0a0557c
|
|
7
|
+
data.tar.gz: 6d9f737bc7b52fd7f497efeb20a88958e9f865b9466213b68f439f6a41a52ec07df56b2ebb09fe536971ab0196de62ebc16ae6b151037a5fe73e1ca5ab985d87
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [v0.7.0](https://github.com/JustinFeng/fakeit/tree/v0.7.0) (2020-10-22)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/JustinFeng/fakeit/compare/v0.6.3...v0.7.0)
|
|
6
|
+
|
|
7
|
+
**Implemented enhancements:**
|
|
8
|
+
|
|
9
|
+
- Supported change mock server behaviour on the fly
|
|
10
|
+
- Allowed to redirect console log to a file
|
|
11
|
+
|
|
3
12
|
## [v0.6.3](https://github.com/JustinFeng/fakeit/tree/v0.6.3) (2020-09-11)
|
|
4
13
|
|
|
5
14
|
[Full Changelog](https://github.com/JustinFeng/fakeit/compare/v0.6.2...v0.6.3)
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -81,11 +81,15 @@ Update config:
|
|
|
81
81
|
Request and response:
|
|
82
82
|
```json
|
|
83
83
|
{
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
84
|
+
"permissive": false,
|
|
85
|
+
"use_example": true,
|
|
86
|
+
"static": false,
|
|
87
|
+
"static_types": [
|
|
88
|
+
"integer"
|
|
89
|
+
],
|
|
90
|
+
"static_properties": [
|
|
91
|
+
"id"
|
|
92
|
+
]
|
|
89
93
|
}
|
|
90
94
|
```
|
|
91
95
|
|
data/lib/fakeit/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fakeit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Justin Feng
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-02-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -235,6 +235,7 @@ files:
|
|
|
235
235
|
- lib/fakeit/app/options.rb
|
|
236
236
|
- lib/fakeit/app/routes/config_route.rb
|
|
237
237
|
- lib/fakeit/app/routes/openapi_route.rb
|
|
238
|
+
- lib/fakeit/core_extensions/reference.rb
|
|
238
239
|
- lib/fakeit/core_extensions/schema.rb
|
|
239
240
|
- lib/fakeit/logger.rb
|
|
240
241
|
- lib/fakeit/middleware/recorder.rb
|
|
@@ -246,6 +247,7 @@ files:
|
|
|
246
247
|
- lib/fakeit/openapi/example/string_example.rb
|
|
247
248
|
- lib/fakeit/openapi/loader.rb
|
|
248
249
|
- lib/fakeit/openapi/operation.rb
|
|
250
|
+
- lib/fakeit/openapi/reference_error.rb
|
|
249
251
|
- lib/fakeit/openapi/schema.rb
|
|
250
252
|
- lib/fakeit/openapi/specification.rb
|
|
251
253
|
- lib/fakeit/validation/validation_error.rb
|
|
@@ -255,7 +257,7 @@ homepage: https://github.com/JustinFeng/fakeit
|
|
|
255
257
|
licenses:
|
|
256
258
|
- MIT
|
|
257
259
|
metadata: {}
|
|
258
|
-
post_install_message:
|
|
260
|
+
post_install_message:
|
|
259
261
|
rdoc_options: []
|
|
260
262
|
require_paths:
|
|
261
263
|
- lib
|
|
@@ -270,8 +272,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
270
272
|
- !ruby/object:Gem::Version
|
|
271
273
|
version: '0'
|
|
272
274
|
requirements: []
|
|
273
|
-
rubygems_version: 3.1.
|
|
274
|
-
signing_key:
|
|
275
|
+
rubygems_version: 3.1.2
|
|
276
|
+
signing_key:
|
|
275
277
|
specification_version: 4
|
|
276
278
|
summary: Create mock server from Openapi specification
|
|
277
279
|
test_files: []
|