lib/uaid/user_agent.rb in fivepointssolutions-uaid-0.1.0 vs lib/uaid/user_agent.rb in fivepointssolutions-uaid-0.1.1
- old
+ new
@@ -50,11 +50,10 @@
version == e
end
def method_missing(method, *args)
if method.to_s =~ /^(\w+)\?$/
- return true if (engine == $1 || product == $1)
- @extractor.engines.include?($1) || @extractor.products.include?($1)
+ engine == $1 || product == $1
else
super
end
end
end
\ No newline at end of file