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 1
|
|
|
|
head "https://github.com/0k/shyaml.git"
|
|
|
|
bottle do
|
|
sha256 "6aaf8c19fafbfede155eea4f154fb91980c18f3002f781e85d70d9370eef1cbd" => :sierra
|
|
sha256 "b22e5a3f5e2d9ea9e98acdebed83c098bfba84320e7b1966463d48b1580b1286" => :el_capitan
|
|
sha256 "dd84c5ac45ad6253e1d5584023bbbd6ff754d93b7ab657bb8a044d7888370e62" => :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
|