Created
March 27, 2012 13:22
-
-
Save dataich/2215820 to your computer and use it in GitHub Desktop.
Revisions
-
dataich revised this gist
Mar 27, 2012 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ require 'formula' class Phpbrew < Formula head 'https://raw.github.com/c9s/phpbrew/master/phpbrew' homepage 'https://github.com/c9s/phpbrew' -
dataich created this gist
Mar 27, 2012 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ require 'formula' class Onion < Formula head 'https://raw.github.com/c9s/phpbrew/master/phpbrew' homepage 'https://github.com/c9s/phpbrew' def install system "chmod a+x phpbrew" system "mkdir -p #{prefix}/bin" system "cp phpbrew #{prefix}/bin" end def test system "phpbrew --version" end end