2014-04-22 23:05:18 +00:00
|
|
|
require "formula"
|
|
|
|
|
|
|
|
class ChrubyFish < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Thin wrapper around chruby to make it work with the Fish shell"
|
2014-04-22 23:05:18 +00:00
|
|
|
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
|