aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/rbenv-whatis.rb
blob: b27d50d3c4b171ba664767d19724e8773937c68f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class RbenvWhatis < Formula
  homepage "https://github.com/rkh/rbenv-whatis"
  url "https://github.com/rkh/rbenv-whatis/archive/v1.0.0.tar.gz"
  sha1 "8c802d8e2bba66d0c87c62c9d0b887beb52b1de4"

  depends_on "rbenv"

  def install
    prefix.install Dir["*"]
  end

  test do
    system "rbenv", "whatis", "2.0"
  end
end