Commit 53d80f8d authored by Samuel Giddins's avatar Samuel Giddins

[Resolver] Fix resolution on Ruby 2.3

parent b34c7148
......@@ -14,6 +14,10 @@ module Pod
specification.send(method, *args, &block)
end
def respond_to_missing?(method, include_all = false)
specification.respond_to?(method, include_all)
end
def subspec_by_name(name = nil, raise_if_missing = true)
if !name || name == self.name
self
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment