Method: PerfectShape::Math.respond_to?

Defined in:
lib/perfect_shape/math.rb

.respond_to?(method_name, include_private = false) ⇒ Boolean

Returns:

  • (Boolean)


96
97
98
# File 'lib/perfect_shape/math.rb', line 96

def respond_to?(method_name, include_private = false)
  super || ::Math.respond_to?(method_name, include_private)
end