lambda_open_api 0.4.0 → 0.4.2
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/Gemfile.lock +1 -1
- data/lib/lambda_open_api/builder.rb +1 -1
- data/lib/lambda_open_api/invoker.rb +1 -0
- data/lib/lambda_open_api/version.rb +1 -1
- metadata +2 -3
- data/lambda_open_api.gemspec +0 -38
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9fc21cc07b51a516198f994a6016701e0a07453ef976e58698c80ebcba51ebf1
|
|
4
|
+
data.tar.gz: 95545f944de7faa63ebe988a68c19b40452457b82b1c39483806a07889416c9a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4d07d3b88d381ba001bfbda911f72941c4a28862132d897350cb13eacb397dda1ee637e0250420048cdf87587e4722dc7dd51c51272f3392a320188b0585038b
|
|
7
|
+
data.tar.gz: 716a70f17e8569dfc1601f9271044c366abf77482b0b818be28a181c942bde9995e68251121abfe749094791cb343093b281606fd520af2d43d7fd29545410d4
|
data/Gemfile.lock
CHANGED
|
@@ -51,7 +51,7 @@ module LambdaOpenApi
|
|
|
51
51
|
@action = LambdaOpenApi::Action.new(name: @name, http_verb: verb, path_name: path)
|
|
52
52
|
@event = @default_event.dup
|
|
53
53
|
@event.request_context = {"httpMethod" => verb.upcase, "http" => {"method" => verb.upcase}}
|
|
54
|
-
|
|
54
|
+
@event.path = path
|
|
55
55
|
yield
|
|
56
56
|
|
|
57
57
|
@action.set_request_body(JSON.parse(@event.body))
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lambda_open_api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Timothyjb
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-09-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: minitest
|
|
@@ -70,7 +70,6 @@ files:
|
|
|
70
70
|
- LICENSE.txt
|
|
71
71
|
- README.md
|
|
72
72
|
- Rakefile
|
|
73
|
-
- lambda_open_api.gemspec
|
|
74
73
|
- lib/lambda_open_api.rb
|
|
75
74
|
- lib/lambda_open_api/action.rb
|
|
76
75
|
- lib/lambda_open_api/body_parameter.rb
|
data/lambda_open_api.gemspec
DELETED
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
require_relative "lib/lambda_open_api/version"
|
|
4
|
-
|
|
5
|
-
Gem::Specification.new do |spec|
|
|
6
|
-
spec.name = "lambda_open_api"
|
|
7
|
-
spec.version = LambdaOpenApi::VERSION
|
|
8
|
-
spec.authors = ["Timothyjb"]
|
|
9
|
-
spec.email = ["timothyjbarkley@gmail.com"]
|
|
10
|
-
|
|
11
|
-
spec.summary = "A DSL for generating OpenAPI (swagger) files for APIs using AWS Lambda"
|
|
12
|
-
spec.description = "This gem is a light weight DSL that works with rspec to allow developers to generate an OpenAPI (swagger) file based an AWS Lambda invoked by API Gateway. It works by writing a simple unit test for your lambda's code. When the test is executed, the input event and returned response are captured and used to build an OpenAPI file."
|
|
13
|
-
spec.homepage = "https://github.com/Timothyjb/lambda_open_api"
|
|
14
|
-
spec.license = "MIT"
|
|
15
|
-
spec.required_ruby_version = ">= 2.5.0"
|
|
16
|
-
|
|
17
|
-
spec.metadata["homepage_uri"] = spec.homepage
|
|
18
|
-
spec.metadata["source_code_uri"] = "https://github.com/Timothyjb/lambda_open_api"
|
|
19
|
-
|
|
20
|
-
# Specify which files should be added to the gem when it is released.
|
|
21
|
-
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
|
22
|
-
spec.files = Dir.chdir(__dir__) do
|
|
23
|
-
`git ls-files -z`.split("\x0").reject do |f|
|
|
24
|
-
(f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
|
|
25
|
-
end
|
|
26
|
-
end
|
|
27
|
-
spec.bindir = "exe"
|
|
28
|
-
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
|
29
|
-
spec.require_paths = ["lib"]
|
|
30
|
-
|
|
31
|
-
# Uncomment to register a new dependency of your gem
|
|
32
|
-
spec.add_development_dependency "minitest"
|
|
33
|
-
spec.add_development_dependency "minitest-reporters"
|
|
34
|
-
spec.add_development_dependency "rspec"
|
|
35
|
-
|
|
36
|
-
# For more information and examples about making a new gem, check out our
|
|
37
|
-
# guide at: https://bundler.io/guides/creating_gem.html
|
|
38
|
-
end
|