homebrew-core/Formula/shyaml.rb
2016-10-17 10:29:10 -07:00

42 lines
1.4 KiB
Ruby

class Shyaml < Formula
include Language::Python::Virtualenv
desc "Command-line YAML parser"
homepage "https://github.com/0k/shyaml"
url "https://files.pythonhosted.org/packages/67/70/1133a5817bc62ff4e7ceee59edb95d127092db9385cc7cda5fcac93c494a/shyaml-0.4.1.tar.gz"
sha256 "a1535c25bf0058563e03ea8cbad8c4dc755ed231e6a9f3f584982994f19eae59"
revision 3
head "https://github.com/0k/shyaml.git"
bottle do
sha256 "a13affdce48adde974086cfc0f2bed9d125ee0c0c254cf04e13fa2af592d1545" => :sierra
sha256 "7232becebfead6beaac2590e9998679338c97b4bd96fd56cca94c5e970ec55aa" => :el_capitan
sha256 "f70892ef6af162ddec1dd861cd5ed05fc91365209899e457af67714488803372" => :yosemite
end
depends_on :python3
depends_on "libyaml"
resource "PyYAML" do
url "https://files.pythonhosted.org/packages/4a/85/db5a2df477072b2902b0eb892feb37d88ac635d36245a72a6a69b23b383a/PyYAML-3.12.tar.gz"
sha256 "592766c6303207a20efc445587778322d7f73b161bd994f227adaa341ba212ab"
end
def install
virtualenv_create(libexec, "python3")
virtualenv_install_with_resources
end
test do
yaml = <<-EOS.undent
key: val
arr:
- 1st
- 2nd
EOS
assert_equal "val", pipe_output("shyaml get-value key", yaml, 0)
assert_equal "1st", pipe_output("shyaml get-value arr.0", yaml, 0)
assert_equal "2nd", pipe_output("shyaml get-value arr.-1", yaml, 0)
end
end