blob: 307198441d5e15ebaa96f9146427523130870171 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require 'formula'
class RbenvReadline < Formula
homepage 'https://github.com/tpope/rbenv-readline'
url 'https://github.com/tpope/rbenv-readline/archive/v1.0.0.tar.gz'
sha1 '2b9484548bb9ea6a72757a0ff750e48b74b9e1f7'
head 'https://github.com/tpope/rbenv-readline.git'
depends_on 'rbenv'
depends_on 'ruby-build'
depends_on 'readline'
def install
prefix.install Dir['*']
end
end
|