aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/git-flow.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2011-03-09 21:11:03 -0800
committerAdam Vandenberg2011-03-12 11:55:09 -0800
commit0476235ce0724f8ce6729c7962184207342fe938 (patch)
tree1567df715e73c09b00af8cb7b58adc6a1dd6b8de /Library/Formula/git-flow.rb
parentf2fff3c510640bdda35dbfadc4f841ef1c85250a (diff)
downloadhomebrew-0476235ce0724f8ce6729c7962184207342fe938.tar.bz2
Use ruby style for inheritance.
Diffstat (limited to 'Library/Formula/git-flow.rb')
-rw-r--r--Library/Formula/git-flow.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/git-flow.rb b/Library/Formula/git-flow.rb
index 24460e8bf..e4da9ab62 100644
--- a/Library/Formula/git-flow.rb
+++ b/Library/Formula/git-flow.rb
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
require 'formula'
-class GitFlowCompletion <Formula
+class GitFlowCompletion < Formula
url 'git://github.com/bobthecow/git-flow-completion.git', :tag => '0.4.0.2'
version '0.4.0.2'
head 'git://github.com/bobthecow/git-flow-completion.git', :branch => 'develop'
@@ -17,7 +17,7 @@ class GitFlowCompletion <Formula
homepage 'https://github.com/bobthecow/git-flow-completion'
end
-class GitFlow <Formula
+class GitFlow < Formula
url 'git://github.com/nvie/gitflow.git', :tag => '0.4.1'
version '0.4.1'
head 'git://github.com/nvie/gitflow.git', :branch => 'develop'