openapi_kit 0.1.0.pre.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 +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +385 -0
- data/lib/openapi_kit/body.rb +71 -0
- data/lib/openapi_kit/codec/boolean.rb +34 -0
- data/lib/openapi_kit/codec/byte.rb +31 -0
- data/lib/openapi_kit/codec/contract.rb +22 -0
- data/lib/openapi_kit/codec/date.rb +32 -0
- data/lib/openapi_kit/codec/date_time.rb +33 -0
- data/lib/openapi_kit/codec/decimal.rb +36 -0
- data/lib/openapi_kit/codec/float.rb +34 -0
- data/lib/openapi_kit/codec/integer.rb +27 -0
- data/lib/openapi_kit/codec/string.rb +26 -0
- data/lib/openapi_kit/codec/uuid.rb +28 -0
- data/lib/openapi_kit/codec.rb +13 -0
- data/lib/openapi_kit/decode.rb +171 -0
- data/lib/openapi_kit/errors.rb +34 -0
- data/lib/openapi_kit/form.rb +25 -0
- data/lib/openapi_kit/optional.rb +67 -0
- data/lib/openapi_kit/rendering.rb +37 -0
- data/lib/openapi_kit/response.rb +21 -0
- data/lib/openapi_kit/runtime.rb +16 -0
- data/lib/openapi_kit/security.rb +122 -0
- data/lib/openapi_kit/version.rb +6 -0
- data/lib/openapi_kit/wire.rb +14 -0
- data/lib/openapi_kit.rb +4 -0
- metadata +112 -0
metadata
ADDED
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: openapi_kit
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0.pre.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Jack Robertson
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: actionpack
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - ">="
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '8.0'
|
|
19
|
+
type: :runtime
|
|
20
|
+
prerelease: false
|
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
+
requirements:
|
|
23
|
+
- - ">="
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: '8.0'
|
|
26
|
+
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: bigdecimal
|
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
|
29
|
+
requirements:
|
|
30
|
+
- - "~>"
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '4.0'
|
|
33
|
+
type: :runtime
|
|
34
|
+
prerelease: false
|
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - "~>"
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '4.0'
|
|
40
|
+
- !ruby/object:Gem::Dependency
|
|
41
|
+
name: sorbet-runtime
|
|
42
|
+
requirement: !ruby/object:Gem::Requirement
|
|
43
|
+
requirements:
|
|
44
|
+
- - "~>"
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '0.5'
|
|
47
|
+
type: :runtime
|
|
48
|
+
prerelease: false
|
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
50
|
+
requirements:
|
|
51
|
+
- - "~>"
|
|
52
|
+
- !ruby/object:Gem::Version
|
|
53
|
+
version: '0.5'
|
|
54
|
+
description: 'What openapi_kit-generated Ruby code requires at runtime: the codecs
|
|
55
|
+
that translate between wire values and Ruby types, the decoding primitives the generated
|
|
56
|
+
structs are built from, and the credential extraction that a generated authenticator
|
|
57
|
+
interface hands you.'
|
|
58
|
+
email:
|
|
59
|
+
- jack.robertson@nexusmods.com
|
|
60
|
+
executables: []
|
|
61
|
+
extensions: []
|
|
62
|
+
extra_rdoc_files: []
|
|
63
|
+
files:
|
|
64
|
+
- LICENSE.txt
|
|
65
|
+
- README.md
|
|
66
|
+
- lib/openapi_kit.rb
|
|
67
|
+
- lib/openapi_kit/body.rb
|
|
68
|
+
- lib/openapi_kit/codec.rb
|
|
69
|
+
- lib/openapi_kit/codec/boolean.rb
|
|
70
|
+
- lib/openapi_kit/codec/byte.rb
|
|
71
|
+
- lib/openapi_kit/codec/contract.rb
|
|
72
|
+
- lib/openapi_kit/codec/date.rb
|
|
73
|
+
- lib/openapi_kit/codec/date_time.rb
|
|
74
|
+
- lib/openapi_kit/codec/decimal.rb
|
|
75
|
+
- lib/openapi_kit/codec/float.rb
|
|
76
|
+
- lib/openapi_kit/codec/integer.rb
|
|
77
|
+
- lib/openapi_kit/codec/string.rb
|
|
78
|
+
- lib/openapi_kit/codec/uuid.rb
|
|
79
|
+
- lib/openapi_kit/decode.rb
|
|
80
|
+
- lib/openapi_kit/errors.rb
|
|
81
|
+
- lib/openapi_kit/form.rb
|
|
82
|
+
- lib/openapi_kit/optional.rb
|
|
83
|
+
- lib/openapi_kit/rendering.rb
|
|
84
|
+
- lib/openapi_kit/response.rb
|
|
85
|
+
- lib/openapi_kit/runtime.rb
|
|
86
|
+
- lib/openapi_kit/security.rb
|
|
87
|
+
- lib/openapi_kit/version.rb
|
|
88
|
+
- lib/openapi_kit/wire.rb
|
|
89
|
+
homepage: https://github.com/Nexus-Mods/openapi_kit
|
|
90
|
+
licenses:
|
|
91
|
+
- MIT
|
|
92
|
+
metadata:
|
|
93
|
+
rubygems_mfa_required: 'true'
|
|
94
|
+
source_code_uri: https://github.com/Nexus-Mods/openapi_kit
|
|
95
|
+
rdoc_options: []
|
|
96
|
+
require_paths:
|
|
97
|
+
- lib
|
|
98
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
99
|
+
requirements:
|
|
100
|
+
- - ">="
|
|
101
|
+
- !ruby/object:Gem::Version
|
|
102
|
+
version: '3.4'
|
|
103
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
104
|
+
requirements:
|
|
105
|
+
- - ">="
|
|
106
|
+
- !ruby/object:Gem::Version
|
|
107
|
+
version: '0'
|
|
108
|
+
requirements: []
|
|
109
|
+
rubygems_version: 3.6.9
|
|
110
|
+
specification_version: 4
|
|
111
|
+
summary: Runtime support for code generated by the openapi_kit OpenAPI generator.
|
|
112
|
+
test_files: []
|