aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/git.rb
diff options
context:
space:
mode:
authorMax Howell2009-09-24 18:49:32 +0100
committerMax Howell2009-09-24 18:49:32 +0100
commit8d405a04bf5c1bd90149e3ef8843f77d34a9de30 (patch)
tree87ebb1a1ad9a81f31ec1678617bd9cc6ea00d310 /Library/Formula/git.rb
parent51dcb8c9e754223cc7fd1c605b160f23b996fe81 (diff)
downloadhomebrew-8d405a04bf5c1bd90149e3ef8843f77d34a9de30.tar.bz2
Use new instance var syntax in example formula
Diffstat (limited to 'Library/Formula/git.rb')
-rw-r--r--Library/Formula/git.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/Library/Formula/git.rb b/Library/Formula/git.rb
index 1a09e452c..bb7fb630d 100644
--- a/Library/Formula/git.rb
+++ b/Library/Formula/git.rb
@@ -1,14 +1,14 @@
require 'brewkit'
class GitManuals <Formula
- @url='http://kernel.org/pub/software/scm/git/git-manpages-1.6.4.4.tar.bz2'
- @md5='5ee880f408f1299d541c273fb7e3c1db'
+ url 'http://kernel.org/pub/software/scm/git/git-manpages-1.6.4.4.tar.bz2'
+ md5 '5ee880f408f1299d541c273fb7e3c1db'
end
class Git <Formula
- @url='http://kernel.org/pub/software/scm/git/git-1.6.4.4.tar.bz2'
- @md5='b150352782998ca1f84185e6af53ec26'
- @homepage='http://git-scm.com'
+ url 'http://kernel.org/pub/software/scm/git/git-1.6.4.4.tar.bz2'
+ md5 'b150352782998ca1f84185e6af53ec26'
+ homepage 'http://git-scm.com'
def install
# if these things are installed, tell git build system to not use them
@@ -31,4 +31,4 @@ class Git <Formula
# on many other packages, and is somewhat crazy, this way is easier
GitManuals.new.brew { man.install Dir['*'] }
end
-end \ No newline at end of file
+end