class RubyMemcheck::Frame

def in_ruby?

def in_ruby?
  return false unless obj
  obj == configuration.ruby ||
    # Hack to fix Ruby built with --enabled-shared
    File.basename(obj) == "libruby.so.#{RUBY_VERSION}"
end