-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/alash3al/redix
- Loading branch information
Showing
2 changed files
with
23 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
class Redix < Formula | ||
desc "a persistent real-time key-value store, with the same redis protocol with powerful features" | ||
homepage "https://alash3al.github.io/redix/" | ||
url "https://github.com/alash3al/redix/releases/download/v1.6/redix_darwin_amd64.zip" | ||
sha256 "2ee32559f97f57e3274d7fcbdf2a580925b5c6e826d241f545c1799ba88d31fc" | ||
|
||
def install | ||
# Rename redix_darwin_amd64 To Redix | ||
system "mv", "redix_darwin_amd64", "redix" | ||
# Install the package very important step | ||
bin.install "redix" | ||
end | ||
|
||
test do | ||
system "true" | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters