Skip to content

Commit

Permalink
Merge pull request #28 from redBorder/development
Browse files Browse the repository at this point in the history
Release 1.0.2
  • Loading branch information
manegron authored Jun 20, 2024
2 parents b778400 + cbc91f0 commit 9590e60
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.1
1.0.2
4 changes: 2 additions & 2 deletions resources/lib/memcached.rb
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def execute(*pattern)

next if (next_row and !pattern.empty?) # Skip printing this key

printf("%5s %25s %13s %45s", row[0] + " |", row[1].to_s + " | ", row[2] + " | ", row[3])
printf("%5s %25s %13s %45s", row[0].to_s + " |", row[1].to_s + " | ", row[2].to_s + " | ", row[3].to_s)
printf("\n")
separator if row!=rows.last

Expand All @@ -199,7 +199,7 @@ def execute(*pattern)
rescue StandardError => e
puts e.message
ensure
host.close unless host.nil?
host.close
end
end
end
Expand Down
2 changes: 1 addition & 1 deletion resources/scripts/rbcli.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
end

$parser.main_options.program_name = "rbcli"
$parser.main_options.version = "1.0.0"
$parser.main_options.version = "1.0.2"
$parser.main_options.banner = "This is the redborder CLI program"

#$parser.main_options do |opt|
Expand Down

0 comments on commit 9590e60

Please sign in to comment.