From 60038850d9488431a9871f105a94d7c2cb5f985a Mon Sep 17 00:00:00 2001 From: Edgar Hernandez Date: Fri, 22 Jan 2021 14:15:35 +0000 Subject: [PATCH] Remove the Gemfile.lock from the gem files 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/**/*']