Skip to content

Instantly share code, notes, and snippets.

@pjaspers
Last active October 11, 2017 09:57
Show Gist options
  • Save pjaspers/6577968 to your computer and use it in GitHub Desktop.
Save pjaspers/6577968 to your computer and use it in GitHub Desktop.
Homebrew formula to install drsh
require 'formula'
class Drsh < Formula
homepage 'http://pjaspers.github.io/drsh/'
url 'https://github.com/pjaspers/drsh/archive/0.0.3.zip'
sha256 'c846ce952521f0723cdde9a1150a5be7b1694ba7d616a9efd1714b76be6f5206'
depends_on "jq"
depends_on "spark"
def install
bin.install "drsh"
end
test do
system "#{bin}/drsh"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment