Skip to content

Instantly share code, notes, and snippets.

@skratchdot
Forked from atdt/jq.rb
Created October 21, 2012 18:57
Show Gist options
  • Save skratchdot/3928088 to your computer and use it in GitHub Desktop.
Save skratchdot/3928088 to your computer and use it in GitHub Desktop.
Jq formula for Homebrew
require 'formula'
class Jq < Formula
homepage 'http://stedolan.github.com/jq/'
url 'http://stedolan.github.com/jq/download/source/jq.tgz'
sha1 'b3dfaafd1bbe89f04a92036eade3475613078e0c'
version '32e1b114df'
def install
system "make"
bin.install "jq"
end
def test
system "echo '{\"a\":\"test\"}' | jq '.a'"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment