aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2013-06-09 15:20:09 -0500
committerJack Nagel2013-06-09 15:20:36 -0500
commita1e30cdd3a142bc8d58b7885156b186497721778 (patch)
tree9acc6c47790aee9d7d9a11e8b84c0a9e379c81f9 /Library
parent8b9a3a560f93b1a1f42dcae83240ffddb6763be0 (diff)
downloadbrew-a1e30cdd3a142bc8d58b7885156b186497721778.tar.bz2
Update Formula#to_hash for tweaked conflicts implementation
Diffstat (limited to 'Library')
-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 51b02eab0..a26e7e448 100644
--- a/Library/Homebrew/formula.rb
+++ b/Library/Homebrew/formula.rb
@@ -519,7 +519,7 @@ class Formula
"linked_keg" => (linked_keg.realpath.basename.to_s if linked_keg.exist?),
"keg_only" => keg_only?,
"dependencies" => deps.map {|dep| dep.to_s},
- "conflicts_with" => conflicts.map {|c| c.formula},
+ "conflicts_with" => conflicts.map(&:name),
"options" => [],
"caveats" => caveats
}