blob: dc33939bfe57b6d53bf2e40838478a33a96624ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
  | 
require 'formula'
class RbenvCommunalGems < Formula
  homepage 'https://github.com/tpope/rbenv-communal-gems'
  url 'https://github.com/tpope/rbenv-communal-gems/archive/v1.0.1.tar.gz'
  sha1 '39360238e89f2d723409c3de2a4132f561de7bb9'
  depends_on 'rbenv'
  def install
    prefix.install Dir['*']
  end
end
  |