gitlab-grape-openapi 0.0.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: f1f4ea6abfdf3c4f4df8d30e3c25801d2e52b6f750ee1e8663b7e6ba84fed19d
4
+ data.tar.gz: 484cd5bb383b8936c966bb720dfc6c0be2febb0dd839f9ab2535124050d72b79
5
+ SHA512:
6
+ metadata.gz: f20d63c31feaa71202b4dd517b5000097475102343ff4ab6b808958f795a42f9a73ad068c3b83f65ee3bf2bb658941f17e2a1b16c9a5eb9a61a55eb7ed5e3b23
7
+ data.tar.gz: 0c306ec014c6f0646ae25156107c5cbdf74033385cf5084313ee4285eb601b1eae1a3d679c7179b5af2bd5f0e36ac366f789424f930c7f24e8569ad0c0fdac57
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2025 GitLab, Inc.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,6 @@
1
+ # Gitlab::Grape::Openapi
2
+
3
+ > [!warning] Reserved gem name
4
+ > This gem is a placeholder to [reserve a gem name](https://docs.gitlab.com/development/gems/#reserve-a-gem-name)
5
+
6
+ Refer to [`gems/`](https://gitlab.com/gitlab-org/gitlab/-/tree/master/gems?ref_type=heads) directory for actual implementation.
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Gitlab
4
+ module Grape
5
+ module Openapi
6
+ VERSION = "0.0.0"
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,21 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "openapi/version"
4
+
5
+ module Gitlab
6
+ module Grape
7
+ module Openapi
8
+ class ReservedError < StandardError; end
9
+
10
+ class << self
11
+ def method_missing(*)
12
+ raise ReservedError, "Reserved for GitLab"
13
+ end
14
+
15
+ def const_missing(*)
16
+ raise ReservedError, "Reserved for GitLab"
17
+ end
18
+ end
19
+ end
20
+ end
21
+ end
metadata ADDED
@@ -0,0 +1,46 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: gitlab-grape-openapi
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - group::api
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2025-10-03 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Reserved for GitLab
14
+ email:
15
+ - engineering@gitlab.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - LICENSE
21
+ - README.md
22
+ - lib/gitlab/grape/openapi.rb
23
+ - lib/gitlab/grape/openapi/version.rb
24
+ homepage:
25
+ licenses: []
26
+ metadata: {}
27
+ post_install_message:
28
+ rdoc_options: []
29
+ require_paths:
30
+ - lib
31
+ required_ruby_version: !ruby/object:Gem::Requirement
32
+ requirements:
33
+ - - ">="
34
+ - !ruby/object:Gem::Version
35
+ version: 3.1.0
36
+ required_rubygems_version: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ requirements: []
42
+ rubygems_version: 3.5.11
43
+ signing_key:
44
+ specification_version: 4
45
+ summary: Reserved for GitLab
46
+ test_files: []