2013-02-02 22:39:49 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class RbenvDefaultGems < Formula
|
|
|
|
homepage 'https://github.com/sstephenson/rbenv-default-gems'
|
2013-03-29 20:29:20 +00:00
|
|
|
url 'https://github.com/sstephenson/rbenv-default-gems/archive/v1.0.0.tar.gz'
|
|
|
|
sha1 'e79c7073909e24e866df49cf9eb3f18aa8872842'
|
2013-02-02 22:39:49 +00:00
|
|
|
|
|
|
|
head 'https://github.com/sstephenson/rbenv-default-gems.git'
|
|
|
|
|
|
|
|
depends_on 'rbenv'
|
|
|
|
depends_on 'ruby-build'
|
|
|
|
|
|
|
|
def install
|
|
|
|
prefix.install Dir['*']
|
2013-02-06 04:12:39 +00:00
|
|
|
end
|
2013-02-02 22:39:49 +00:00
|
|
|
end
|