aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/dependable.rb
diff options
context:
space:
mode:
authorJack Nagel2014-08-13 11:09:57 -0500
committerJack Nagel2014-08-13 11:09:57 -0500
commit268cd143bef42acd82b52dd39ba05a3beda86275 (patch)
treeb2bf5f24c9a31451cd007415947f22c1aea7ba7e /Library/Homebrew/dependable.rb
parent094c184b12b29c5978b3c669352991650fcba313 (diff)
downloadbrew-268cd143bef42acd82b52dd39ba05a3beda86275.tar.bz2
Replace Options.coerce with an alternate constructor
Diffstat (limited to 'Library/Homebrew/dependable.rb')
-rw-r--r--Library/Homebrew/dependable.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/dependable.rb b/Library/Homebrew/dependable.rb
index d500cd033..f1951e4c6 100644
--- a/Library/Homebrew/dependable.rb
+++ b/Library/Homebrew/dependable.rb
@@ -24,6 +24,6 @@ module Dependable
end
def options
- Options.coerce(tags - RESERVED_TAGS)
+ Options.create(tags - RESERVED_TAGS)
end
end