Skip to content

Commit

Permalink
Merge pull request #40 from delano/39-gem-path-set-incorrectly-for-ex…
Browse files Browse the repository at this point in the history
…ecutables-in-060

Fix executables path
  • Loading branch information
delano authored Jun 18, 2024
2 parents c1f15eb + 120a041 commit edc6aac
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
REDIS-DUMP, CHANGES

#### 0.6.1 (2024-06-17) ###############################

* FIXED: Gem path for redis-dump, redis-load, redis-report executables

#### 0.6.0 (2024-06-17) ###############################

* ADDED: Supports redis-rb 5.0
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,4 @@ DEPENDENCIES
yajl-ruby (>= 1.4.3)

BUNDLED WITH
2.5.9
2.5.13
2 changes: 1 addition & 1 deletion lib/redis/dump/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

class Redis
class Dump
VERSION = "0.6.0"
VERSION = "0.6.1"
end
end
6 changes: 3 additions & 3 deletions redis-dump.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ Gem::Specification.new do |spec|
spec.required_ruby_version = Gem::Requirement.new(">= 2.7.8")

spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{\A(?:bin|test|spec|features)/|\.(?:git|circleci)|appveyor})
f.match(%r{\A(?:bin|test|spec|features|try)/|\.(?:git|circleci)|appveyor|pre|rub})
end
spec.bindir = "bin"
spec.executables = spec.files.grep(%r{\Abin/}) { |f| File.basename(f) }
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
end

0 comments on commit edc6aac

Please sign in to comment.