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.30.jar" sha256 "dc45a288e4bbbf98c93daca56470facd515b1d464b8ab524588ff5bc8f2e9c86" 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