diff options
| author | Jack Nagel | 2014-04-07 18:49:38 -0500 | 
|---|---|---|
| committer | Jack Nagel | 2014-04-07 18:50:42 -0500 | 
| commit | 29b88457870d46901acc7bba6523b475e3a92674 (patch) | |
| tree | 693afe8fda671cd8eb930e3fc223feff1c436cf4 | |
| parent | 9566944214c92d1743ee00ffb80dfe9142d02dc2 (diff) | |
| download | homebrew-29b88457870d46901acc7bba6523b475e3a92674.tar.bz2 | |
GithubGistFormula doesn't need to know the exact signature of initialize
| -rw-r--r-- | Library/Homebrew/formula_specialties.rb | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/formula_specialties.rb b/Library/Homebrew/formula_specialties.rb index 807d5b643..eab8de540 100644 --- a/Library/Homebrew/formula_specialties.rb +++ b/Library/Homebrew/formula_specialties.rb @@ -9,7 +9,7 @@ end  # See browser for an example  class GithubGistFormula < ScriptFileFormula -  def initialize name='__UNKNOWN__', path=nil +  def initialize(*)      url = self.class.stable.url      self.class.stable.version(File.basename(File.dirname(url))[0,6])      super  | 
