Skip to content

Commit

Permalink
[AF-45] Allow test files when publishing the gem (#46)
Browse files Browse the repository at this point in the history
* Allow test files when publishing the gem

* Upgrade core version
  • Loading branch information
ricardopacheco authored Apr 30, 2024
1 parent 80fa3ec commit 20f876d
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion auction_fun_core.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion lib/auction_fun_core/version.rb
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion spec/auction_fun_core_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 20f876d

Please sign in to comment.