Skip to content

Commit

Permalink
Add license and required_ruby_version attributes (#3)
Browse files Browse the repository at this point in the history
These attributes are currently missing from the gemspec.
  • Loading branch information
edhzsz authored Dec 1, 2020
1 parent 658ff0a commit 6605ddd
Showing 1 changed file with 13 additions and 10 deletions.
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

0 comments on commit 6605ddd

Please sign in to comment.