aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2012-08-21 13:45:35 -0500
committerJack Nagel2012-08-21 13:45:35 -0500
commite2058ed362eefca0cdc9553a7f9e7a5bb83acc26 (patch)
tree27eaccd15430e67eb16c278b231f7db288c174c8 /Library
parentabf55c2bcdde40cffd5d5f73291e0af174ecb1e2 (diff)
downloadbrew-e2058ed362eefca0cdc9553a7f9e7a5bb83acc26.tar.bz2
mach-o: use any? instead of map and include?
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/mach.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Homebrew/mach.rb b/Library/Homebrew/mach.rb
index 7b9d4d345..d1f4540ec 100644
--- a/Library/Homebrew/mach.rb
+++ b/Library/Homebrew/mach.rb
@@ -100,14 +100,14 @@ module MachO
end
def dylib?
- mach_data.map{ |m| m.fetch :type }.include? :dylib
+ mach_data.any? { |m| m.fetch(:type) == :dylib }
end
def mach_o_executable?
- mach_data.map{ |m| m.fetch :type }.include? :executable
+ mach_data.any? { |m| m.fetch(:type) == :executable }
end
def mach_o_bundle?
- mach_data.map{ |m| m.fetch :type }.include? :bundle
+ mach_data.any? { |m| m.fetch(:type) == :bundle }
end
end