Skip to content

Commit

Permalink
updated package to handle the brew installer
Browse files Browse the repository at this point in the history
  • Loading branch information
scottdavis committed Oct 3, 2011
1 parent 410178a commit 0d19cc2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/sprinkle/package.rb
Expand Up @@ -172,6 +172,10 @@ def yum(*names, &block)
def zypper(*names, &block)
@installers << Sprinkle::Installers::Zypper.new(self, *names, &block)
end

def brew(*names, &block)
@installers << Sprinkle::Installers::Brew.new(self, *names, &block)
end

def gem(name, options = {}, &block)
@recommends << :rubygems
Expand Down

0 comments on commit 0d19cc2

Please sign in to comment.