From e21a1fab51067674248349855073a988791f7a29 Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Thu, 27 Mar 2014 22:35:08 -0500 Subject: [PATCH] Move initializer after constants and class methods --- Library/Homebrew/keg.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Library/Homebrew/keg.rb b/Library/Homebrew/keg.rb index d40b53d99d..edf82a71de 100644 --- a/Library/Homebrew/keg.rb +++ b/Library/Homebrew/keg.rb @@ -4,12 +4,6 @@ require "formula_lock" require "ostruct" class Keg < Pathname - def initialize path - super path - raise "#{to_s} is not a valid keg" unless parent.parent.realpath == HOMEBREW_CELLAR.realpath - raise "#{to_s} is not a directory" unless directory? - end - # locale-specific directories have the form language[_territory][.codeset][@modifier] LOCALEDIR_RX = /(locale|man)\/([a-z]{2}|C|POSIX)(_[A-Z]{2})?(\.[a-zA-Z\-0-9]+(@.+)?)?/ INFOFILE_RX = %r[info/([^.].*?\.info|dir)$] @@ -40,6 +34,12 @@ class Keg < Pathname raise NotAKegError, "#{path} is not inside a keg" end + def initialize path + super path + raise "#{to_s} is not a valid keg" unless parent.parent.realpath == HOMEBREW_CELLAR.realpath + raise "#{to_s} is not a directory" unless directory? + end + def uninstall rmtree parent.rmdir_if_possible