aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMike McQuaid2013-10-25 21:07:20 +0100
committerMike McQuaid2013-10-25 21:33:20 +0100
commit481731d364c4ea56eae710e60ebe4e66de684d1b (patch)
tree9b1664470c926830ba082a7a7b89e0806c671436 /Library/Formula
parent09d1977d73e614672a83a84fe84f23f2439fd3ed (diff)
downloadhomebrew-481731d364c4ea56eae710e60ebe4e66de684d1b.tar.bz2
rbenv-readline 1.0.0 (new formula)
Fixes https://github.com/tpope/rbenv-readline/issues/1.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/rbenv-readline.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/rbenv-readline.rb b/Library/Formula/rbenv-readline.rb
new file mode 100644
index 000000000..307198441
--- /dev/null
+++ b/Library/Formula/rbenv-readline.rb
@@ -0,0 +1,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