Skip to content

Add license and required_ruby_version attributes #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 1, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 13 additions & 10 deletions aws_lambda_ric.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,19 @@ $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 = AwsLambdaRuntimeInterfaceClient::VERSION
spec.authors = ['AWS Lambda']
spec.name = 'aws_lambda_ric'
spec.version = AwsLambdaRuntimeInterfaceClient::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.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[
spec.files = %w[
LICENSE
README.md
Gemfile
Expand All @@ -26,10 +29,10 @@ Gem::Specification.new do |spec|
bin/aws_lambda_ric
] + Dir['lib/**/*']

spec.bindir = 'bin'
spec.bindir = 'bin'
# all application-style files are expected to be found in bindir
spec.executables = 'aws_lambda_ric'
spec.require_paths = ['lib']
spec.executables = 'aws_lambda_ric'
spec.require_paths = ['lib']

spec.add_development_dependency 'bundler', '>= 2.0'
spec.add_development_dependency 'minitest', '~> 5.0'
Expand Down