From 20f876df867e4b90c8ca5eb30d3f28c4fe8a11c0 Mon Sep 17 00:00:00 2001 From: Ricardo Pacheco Date: Tue, 30 Apr 2024 11:33:00 -0300 Subject: [PATCH] [AF-45] Allow test files when publishing the gem (#46) * Allow test files when publishing the gem * Upgrade core version --- CHANGELOG.md | 6 ++++++ Gemfile.lock | 2 +- auction_fun_core.gemspec | 2 +- lib/auction_fun_core/version.rb | 2 +- spec/auction_fun_core_spec.rb | 2 +- 5 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fc1837a..d402359 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ ## [Unreleased] +## [0.8.10] - 2024-04-30 + +### Changed + +- Allow spec files when publishing the gem; + ## [0.8.9] - 2024-04-29 ### Added diff --git a/Gemfile.lock b/Gemfile.lock index 6ee4b5e..73f4030 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - auction_fun_core (0.8.9) + auction_fun_core (0.8.10) activesupport (= 7.1.3.2) bcrypt (= 3.1.20) dotenv (= 3.1.0) diff --git a/auction_fun_core.gemspec b/auction_fun_core.gemspec index b92b27b..fd6927e 100644 --- a/auction_fun_core.gemspec +++ b/auction_fun_core.gemspec @@ -25,7 +25,7 @@ Gem::Specification.new do |spec| spec.files = Dir.chdir(__dir__) do `git ls-files -z`.split("\x0").reject do |f| (File.expand_path(f) == __FILE__) || - f.start_with?(*%w[bin/ test/ spec/ features/ .git .github appveyor Gemfile]) + f.start_with?(*%w[bin/ test/ features/ .git .github appveyor Gemfile]) end end spec.bindir = "exe" diff --git a/lib/auction_fun_core/version.rb b/lib/auction_fun_core/version.rb index 8f746b2..9ad3ee6 100644 --- a/lib/auction_fun_core/version.rb +++ b/lib/auction_fun_core/version.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true module AuctionFunCore - VERSION = "0.8.9" + VERSION = "0.8.10" # Required class module is a gem dependency class Version; end diff --git a/spec/auction_fun_core_spec.rb b/spec/auction_fun_core_spec.rb index b93735b..ebcf4e1 100644 --- a/spec/auction_fun_core_spec.rb +++ b/spec/auction_fun_core_spec.rb @@ -2,6 +2,6 @@ RSpec.describe AuctionFunCore do it "has a version number" do - expect(AuctionFunCore::VERSION).to eq("0.8.9") + expect(AuctionFunCore::VERSION).to eq("0.8.10") end end