class Embulk < Formula desc "Data transfer between various databases, file formats and services" homepage "http://www.embulk.org/" url "https://bintray.com/artifact/download/embulk/maven/embulk-0.8.12.jar" sha256 "70b54a0909612d1cfb92cffa73ac6b2183bf800abc6226ed130d0c772361225a" bottle :unneeded depends_on :java => "1.7+" def install # Execute through /bin/bash to be compatible with OS X 10.9. libexec.install "embulk-#{version}.jar" => "embulk.jar" (bin/"embulk").write <<-EOS.undent #!/bin/bash exec /bin/bash "#{libexec}/embulk.jar" "$@" EOS end test do system bin/"embulk", "example", "./try1" system bin/"embulk", "guess", "./try1/seed.yml", "-o", "config.yml" system bin/"embulk", "preview", "config.yml" system bin/"embulk", "run", "config.yml" end end