# File lib/active_support/core_ext/object/inclusion.rb, line 10 def in?(another_object) another_object.include?(self) rescue NoMethodError raise ArgumentError.new("The parameter passed to #in? must respond to #include?") end