blob: a2b965926cab2295ac91b1ab9eaf96f50468c1cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
  | 
require 'formula'
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
end
  |