From dba1b718fad3e636f214433bf4c92331cd5f1ab3 Mon Sep 17 00:00:00 2001 From: Brian Storti Date: Mon, 1 Apr 2024 14:23:36 -0300 Subject: [PATCH] Fix gemspec We were overriding the gem files with the specs, causing the lib code to not be included in the gem. --- lib/tremendous/version.rb | 2 +- tremendous.gemspec | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/tremendous/version.rb b/lib/tremendous/version.rb index 87cea38..42c22cf 100644 --- a/lib/tremendous/version.rb +++ b/lib/tremendous/version.rb @@ -1,3 +1,3 @@ module Tremendous - VERSION = "5.0.0" + VERSION = "5.0.1" end diff --git a/tremendous.gemspec b/tremendous.gemspec index 4813935..bf71bd8 100644 --- a/tremendous.gemspec +++ b/tremendous.gemspec @@ -19,7 +19,6 @@ Gem::Specification.new do |spec| spec.add_runtime_dependency "faraday-multipart" spec.files = Dir["lib/**/*.rb"] - spec.files = Dir["spec/**/*.rb"] spec.executables = [] spec.require_paths = ["lib"] end