Skip to content

Commit ffb4597

Browse files
committed
Remove dev files form the gem
1 parent c864f65 commit ffb4597

File tree

4 files changed

+7
-10
lines changed

4 files changed

+7
-10
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## [Unreleased]
22

3+
## [0.5.1] 2024-09-09
4+
5+
- Remove dev files from the release
6+
37
## [0.5.0] 2024-09-09
48

59
- Added support for Managed Identities (Entra ID)

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ GIT
9797
PATH
9898
remote: .
9999
specs:
100-
azure-blob (0.5.0)
100+
azure-blob (0.5.1)
101101
rexml
102102

103103
GEM

azure-blob.gemspec

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,7 @@ Gem::Specification.new do |spec|
2020

2121
spec.add_dependency "rexml"
2222

23-
# Specify which files should be added to the gem when it is released.
24-
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
25-
spec.files = Dir.chdir(__dir__) do
26-
`git ls-files -z`.split("\x0").reject do |f|
27-
(File.expand_path(f) == __FILE__) ||
28-
f.start_with?(*%w[bin/ test/ spec/ features/ .git .github appveyor Gemfile])
29-
end
30-
end
23+
spec.files = Dir['lib/**/*.rb', 'Rakefile', 'README.md', 'CHANGELOG.md', 'LICENSE.txt']
3124
spec.bindir = "exe"
3225
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
3326
spec.require_paths = [ "lib" ]

lib/azure_blob/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module AzureBlob
4-
VERSION = "0.5.0"
4+
VERSION = "0.5.1"
55
end

0 commit comments

Comments
 (0)