tomograph 3.2.0 → 3.2.2

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: 3325a247d67c5573ce732942f0ce962e286ff44df559ca20026834b70e541630
4
- data.tar.gz: d3303b26448aeb89fd95d15b5d3958aaeca7fe30b8054ae31af22a8933774fb8
3
+ metadata.gz: 44f03cbdf7e9543ac0a8ef75c27b6dfb9082ef0cdeb54c2a2609c6660fb9648c
4
+ data.tar.gz: 18d43a2b6765ef254249cc0b4de210ed2e8d31a4e42ccb824dd524222d0e47df
5
5
  SHA512:
6
- metadata.gz: 8c3f659cf90f535c8c5cb17c4164a9d7e751930c4bd98575e67cec65f24aa9f832506c44f98c56013947806259945baa94a2a13785a7ff7a9cc0c97b32d26992
7
- data.tar.gz: 2a9f4c82ccdd8c6e7c9ad1e52950a32401f48f056ce2199eaddb09ea6f347a37e5210cc030a1933bfb593b6cc5a23c6fa535fbd1df7726ea4170353d9e2f20f1
6
+ metadata.gz: 8c0fb45d78a88835e5a276d2c88e0882bd94fea9fe5864c7793ff14283d45fe20710720486598cbe601baa3440ebabb967e434988c6b06eaa1676a44ef212f44
7
+ data.tar.gz: 140b24c7fb62de2490e096126a34c374d6caa21203beda443ae48a14f85f999bd6a1bad643fefc9be51f3ef587ce0c755da3c7ab205dcee7a6f899bde91f17be
data/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Change log
2
2
 
3
+ ### 3.2.2 - 2024-05-14
4
+
5
+ * bug fixes
6
+ * allow doc without components for OpenAPI 3.0
7
+
8
+ ### 3.2.1 - 2024-04-03
9
+
10
+ * patch
11
+ * change home page
12
+
3
13
  ### 3.2.0 - 2024-01-13
4
14
 
5
15
  * features
data/README.md CHANGED
@@ -383,4 +383,4 @@ tomograph -d 4 --split apielemetns.yaml jsons/
383
383
 
384
384
  The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
385
385
 
386
- [![Sponsored by FunBox](https://funbox.ru/badges/sponsored_by_funbox_centered.svg)](https://funbox.ru)
386
+ [Sponsored by FunBox](https://funbox.ru)
@@ -57,7 +57,7 @@ module Tomograph
57
57
  end
58
58
 
59
59
  def schema(sche)
60
- defi = @documentation['components']['schemas']
60
+ defi = @documentation['components']['schemas'] if @documentation['components']
61
61
  if sche.keys.include?('$ref')
62
62
  sche.merge!('components' => {})
63
63
  sche['components'].merge!('schemas' => {})
@@ -1,3 +1,3 @@
1
1
  module Tomograph
2
- VERSION = '3.2.0'.freeze
2
+ VERSION = '3.2.2'.freeze
3
3
  end
data/tomograph.gemspec CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
 
11
11
  spec.summary = 'Convert API Blueprint, Swagger and OpenAPI to Tomogram'
12
12
  spec.description = 'Convert API Blueprint, Swagger and OpenAPI to routes and JSON-Schemas'
13
- spec.homepage = 'https://github.com/matchtechnologies/tomograph'
13
+ spec.homepage = 'https://github.com/tuwilof/tomograph'
14
14
  spec.license = 'MIT'
15
15
 
16
16
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tomograph
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.0
4
+ version: 3.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - d.efimov
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-01-12 00:00:00.000000000 Z
11
+ date: 2024-05-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: methadone
@@ -180,7 +180,7 @@ files:
180
180
  - lib/tomograph/version.rb
181
181
  - script/update_json_fixtures
182
182
  - tomograph.gemspec
183
- homepage: https://github.com/matchtechnologies/tomograph
183
+ homepage: https://github.com/tuwilof/tomograph
184
184
  licenses:
185
185
  - MIT
186
186
  metadata: {}