From d5cfe4f7e9d52e02c93cbfdbc6da2ab0023a033c Mon Sep 17 00:00:00 2001 From: Edgar Hernandez Date: Mon, 25 Jan 2021 05:28:44 +0000 Subject: [PATCH] Remove the Gemfile.lock from the gem files (#12) The Gemfile.lock was removed in #11 but it was missed to be removed from the files being included in the released gem. This is breaking our integration tests and it is still attempting to publish the removed file as part of the gem. `make pr` did not fail as it runs `bundler init` before running the unit and smoke tests. On a clean branch, running `make integ-tests` reproduces the failure. --- aws_lambda_ric.gemspec | 1 - 1 file changed, 1 deletion(-) diff --git a/aws_lambda_ric.gemspec b/aws_lambda_ric.gemspec index fd0de09..ac356a1 100644 --- a/aws_lambda_ric.gemspec +++ b/aws_lambda_ric.gemspec @@ -24,7 +24,6 @@ Gem::Specification.new do |spec| README.md Gemfile NOTICE - Gemfile.lock aws_lambda_ric.gemspec bin/aws_lambda_ric ] + Dir['lib/**/*']