-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathaws_lambda_ric.gemspec
39 lines (32 loc) · 1.41 KB
/
aws_lambda_ric.gemspec
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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require './lib/aws_lambda_ric/version'
Gem::Specification.new do |spec|
spec.name = 'aws_lambda_ric'
spec.version = AwsLambdaRIC::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 = '>= 3.0'
# 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'
spec.add_development_dependency 'test-unit', '~> 3.5.5'
end