homebrew-core/Formula/gel.rb
Mike McQuaid 46a015a6be
gel 0.2.0 (new formula)
Add https://github.com/gel-rb/gel/.

Closes #39036.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2019-04-18 21:36:37 +09:00

21 lines
471 B
Ruby

class Gel < Formula
desc "Modern gem manager"
homepage "https://gel.dev"
url "https://github.com/gel-rb/gel/archive/v0.2.0.tar.gz"
sha256 "7d69f745986c9c33272f080496aea53719d69d4f465993c740f432ef5f0a3bd3"
bottle :unneeded
def install
prefix.install "bin", "exe", "lib"
share.install "man"
end
test do
(testpath/"Gemfile").write <<~EOS
source "https://rubygems.org"
gem "gel"
EOS
system "#{bin}/gel", "install"
end
end