aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/formula.rb
diff options
context:
space:
mode:
authoreregon2011-03-20 22:37:25 +0100
committerAdam Vandenberg2011-03-20 19:12:29 -0700
commiteb121eeabb78e190b29c5d15da37b157e4e805f6 (patch)
tree1bc4fe7186bcf5a38fffdd915449c2ea5fc8bb2a /Library/Homebrew/formula.rb
parentaa6d7fce29f3fedd7d38c48dfb1171f7fc944838 (diff)
downloadhomebrew-eb121eeabb78e190b29c5d15da37b157e4e805f6.tar.bz2
use Module#const_get instead of eval
* may be a problem if the constant is scoped (like A::B), but this is not the case (const.split('::').inject(Object) { |c, part| c.const_get part } would solve that) * this was noticed in a comment of 9afc85ad but it has disappeared Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Homebrew/formula.rb')
-rw-r--r--Library/Homebrew/formula.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb
index e394d0f5c..dd4e03261 100644
--- a/Library/Homebrew/formula.rb
+++ b/Library/Homebrew/formula.rb
@@ -378,7 +378,7 @@ class Formula
begin
klass_name = self.class_s(name)
- klass = eval(klass_name)
+ klass = Object.const_get klass_name
rescue NameError
# TODO really this text should be encoded into the exception
# and only shown if the UI deems it correct to show it