forked from aws/aws-lambda-ruby-runtime-interface-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaws_lambda_ric.gemspec
More file actions
45 lines (37 loc) · 1.54 KB
/
aws_lambda_ric.gemspec
File metadata and controls
45 lines (37 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
# frozen_string_literal: true
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "./lib/aws_lambda_ric_jets/version"
Gem::Specification.new do |spec|
spec.name = "aws_lambda_ric_jets"
spec.version = AwsLambdaRicJets::VERSION
spec.authors = ["Tung Nguyen"]
# Original name and authors below for credit.
# They are not maintaining this fork.
# spec.name = 'aws_lambda_ric_jets'
# spec.version = AwsLambdaRicJets::VERSION
# spec.authors = ['AWS Lambda']
spec.summary = "AWS Lambda Runtime Interface Client for Ruby"
spec.description = "The AWS Lambda Ruby Runtime Interface Client implements the Lambda programming model for Ruby."
spec.homepage = "https://github.com/aws/aws-lambda-ruby-runtime-interface-client"
spec.license = "Apache-2.0"
spec.required_ruby_version = ">= 2.5"
# Specify which files should be added to the gem when it is released.
spec.files = %w[
LICENSE
README.md
Gemfile
NOTICE
aws_lambda_ric.gemspec
bin/aws_lambda_ric
] + Dir["lib/**/*"]
spec.bindir = "bin"
# all application-style files are expected to be found in bindir
spec.executables = "aws_lambda_ric"
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", ">= 2.0"
spec.add_development_dependency "minitest", "~> 5.0"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "activesupport", "~> 6.0.1"
end