41 lines
1.4 KiB
Ruby
41 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 2
|
|
|
|
head "https://github.com/0k/shyaml.git"
|
|
|
|
bottle do
|
|
sha256 "e865536e01ee074fcc0f483f94e516b0214f2b863668ae5a17b8375870d7ef1d" => :sierra
|
|
sha256 "fc8e5b388d96bfa986c8e6bb7378ac29b5c72c5d9308f252b27b9e8fffd9e12f" => :el_capitan
|
|
sha256 "a6c37f40a3fb2ba0a13ad9910d4ce1459fd51a00ce6a5dff9369effceb037f8e" => :yosemite
|
|
end
|
|
|
|
depends_on :python3
|
|
|
|
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
|