module RType::Helper::RubyCompareable

Public Instance Methods

==(obj) click to toggle source
Calls superclass method
# File lib/r_type/helper/ruby_compareable.rb, line 2
def == obj
  if obj.is_a?(RType::Helper::Compareable)
    to_ruby == obj.to_ruby
  else
    super
  end
end