9234182a8a
Thin wrapper around `chruby` to make it work with the Fish shell. See the chruby-fish documentation for more details: https://github.com/JeanMertz/chruby-fish#readme Closes Homebrew/homebrew#28623. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
14 lines
395 B
Ruby
14 lines
395 B
Ruby
require "formula"
|
|
|
|
class ChrubyFish < Formula
|
|
homepage "https://github.com/JeanMertz/chruby-fish#readme"
|
|
head "https://github.com/JeanMertz/chruby-fish.git"
|
|
url "https://github.com/JeanMertz/chruby-fish/archive/v0.6.0.tar.gz"
|
|
sha1 "e8262283018137db89ba5031ec088a5df3df19d0"
|
|
|
|
depends_on "chruby" => :recommended
|
|
|
|
def install
|
|
system "make", "install", "PREFIX=#{prefix}"
|
|
end
|
|
end
|