class Um < Formula desc "Command-line utility for creating and maintaining personal man pages" homepage "https://github.com/sinclairtarget/um" url "https://github.com/sinclairtarget/um/archive/4.1.0.tar.gz" sha256 "0606cd8da69618d508d06dee859dd1147a4d8846cdff57fb8958c71fe906523f" bottle do cellar :any_skip_relocation sha256 "1d1db24a30203c2439682f6cc2a5426aab764187ee7586f23baf1e7c8a866cf1" => :mojave sha256 "292928bc6148b5a43c6247602fae927be0b06c8e6d0ec2b60d25432ed77e74d7" => :high_sierra sha256 "985f610f0669af71b2d24cf8489d15967f1ea30b650372165ea41aabd93cfc33" => :sierra end depends_on "ruby" if MacOS.version <= :sierra resource "kramdown" do url "https://rubygems.org/gems/kramdown-1.17.0.gem" sha256 "5862410a2c1692fde2fcc86d78d2265777c22bd101f11c76442f1698ab242cd8" end def install ENV["GEM_HOME"] = libexec resources.each do |r| r.verify_download_integrity(r.fetch) system "gem", "install", r.cached_download, "--ignore-dependencies", "--no-document", "--install-dir", libexec end system "gem", "build", "um.gemspec" system "gem", "install", "--ignore-dependencies", "um-#{version}.gem" bin.install libexec/"bin/um" bin.env_script_all_files(libexec/"bin", :GEM_HOME => ENV["GEM_HOME"]) bash_completion.install "um-completion.sh" man1.install Dir["doc/man1/*"] end test do system bin/"um", "topic", "-d" # Set default topic output = shell_output("#{bin}/um topic") assert_match shell_output("#{bin}/um config default_topic"), output end end