Skip to content

Commit

Permalink
Remove dev files form the gem
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeDupuis committed Sep 10, 2024
1 parent c864f65 commit ffb4597
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## [Unreleased]

## [0.5.1] 2024-09-09

- Remove dev files from the release

## [0.5.0] 2024-09-09

- Added support for Managed Identities (Entra ID)
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ GIT
PATH
remote: .
specs:
azure-blob (0.5.0)
azure-blob (0.5.1)
rexml

GEM
Expand Down
9 changes: 1 addition & 8 deletions azure-blob.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,7 @@ Gem::Specification.new do |spec|

spec.add_dependency "rexml"

# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
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])
end
end
spec.files = Dir['lib/**/*.rb', 'Rakefile', 'README.md', 'CHANGELOG.md', 'LICENSE.txt']
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = [ "lib" ]
Expand Down
2 changes: 1 addition & 1 deletion lib/azure_blob/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module AzureBlob
VERSION = "0.5.0"
VERSION = "0.5.1"
end

0 comments on commit ffb4597

Please sign in to comment.