From c3bcf10324f0707d8ecf59f7de668d4c31de73cb Mon Sep 17 00:00:00 2001 From: delano Date: Mon, 17 Jun 2024 21:23:02 -0700 Subject: [PATCH 1/2] [#39] Fix for executable path Signed-off-by: delano --- redis-dump.gemspec | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/redis-dump.gemspec b/redis-dump.gemspec index 85cd662..7209076 100644 --- a/redis-dump.gemspec +++ b/redis-dump.gemspec @@ -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 From 120a041f0c22bff1040954eeeb7bce0259070df3 Mon Sep 17 00:00:00 2001 From: delano Date: Mon, 17 Jun 2024 21:23:19 -0700 Subject: [PATCH 2/2] [#39] Version bump: 0.6.1 Signed-off-by: delano --- CHANGES.txt | 4 ++++ Gemfile.lock | 2 +- lib/redis/dump/version.rb | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index f33bc32..4d5cf9a 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -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 diff --git a/Gemfile.lock b/Gemfile.lock index c9c6ceb..0a61342 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -73,4 +73,4 @@ DEPENDENCIES yajl-ruby (>= 1.4.3) BUNDLED WITH - 2.5.9 + 2.5.13 diff --git a/lib/redis/dump/version.rb b/lib/redis/dump/version.rb index aebfe3b..e09dffd 100644 --- a/lib/redis/dump/version.rb +++ b/lib/redis/dump/version.rb @@ -2,6 +2,6 @@ class Redis class Dump - VERSION = "0.6.0" + VERSION = "0.6.1" end end