schemacop 3.0.5 → 3.0.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -7
- data/VERSION +1 -1
- data/lib/schemacop/schema3.rb +2 -2
- data/lib/schemacop/v3/context.rb +1 -1
- data/schemacop.gemspec +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: db3239081f4731794b9e52be8901752fc9ed70ca8a0c6b0afaa148be11015f36
|
4
|
+
data.tar.gz: cdb44d05750c603be99188670833605da946f507ab726456ed49aa2422381e68
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c64bf86004b0f5a0c7e52aa833d7b37efe267c993bd26fd7cadfa18891dbcc6375c89f0af68f91c168c0b83fa9e641dc5e3ec6b5121b9c67d8135956beec5a1d
|
7
|
+
data.tar.gz: f4c6d201ff95b6a1f2e0ebf6c6c447a0047ef72f39257b533420b64d5000573a6f4e58d2f95f5f4e0ba50397a8d8a76e7b08298d5338aff50ebce52bd73cacec
|
data/CHANGELOG.md
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
# Change log
|
2
2
|
|
3
|
-
|
4
|
-
## master (unreleased)
|
3
|
+
## 3.0.6 (2021-02-14)
|
5
4
|
|
6
|
-
|
7
|
-
|
8
|
-
|
5
|
+
* Remove option `json_format` from {Schemacop::Schema3.as_json as_json} again.
|
6
|
+
If you need to use the swagger format, use
|
7
|
+
{Schemacop::V3::Context.with_json_format} instead.
|
9
8
|
|
10
|
-
|
11
|
-
|
9
|
+
* Rename `Schemacop::V3::Context.spawn_with` to
|
10
|
+
{Schemacop::V3::Context.with_json_format} and make keyword argument
|
11
|
+
`json_format` a positional argument.
|
12
12
|
|
13
13
|
## 3.0.5 (2021-02-14)
|
14
14
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.6
|
data/lib/schemacop/schema3.rb
CHANGED
data/lib/schemacop/v3/context.rb
CHANGED
data/schemacop.gemspec
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
|
-
# stub: schemacop 3.0.
|
2
|
+
# stub: schemacop 3.0.6 ruby lib
|
3
3
|
|
4
4
|
Gem::Specification.new do |s|
|
5
5
|
s.name = "schemacop".freeze
|
6
|
-
s.version = "3.0.
|
6
|
+
s.version = "3.0.6"
|
7
7
|
|
8
8
|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
9
9
|
s.require_paths = ["lib".freeze]
|