homebrew-core/Formula/embulk.rb
Mike McQuaid 7a4dabfc1a Use hash rockets again. (#5177)
This restores 1.8 hash rockets because they look nicer with e.g. `depends_on :foo => :bar`
2016-09-24 16:45:48 +01:00

26 lines
831 B
Ruby

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