datamapper/dm-core

View on GitHub
lib/dm-core/core_ext/pathname.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Pathname
  # alias_method :to_s, :to to_str when to_str not defined
  unless public_instance_methods(false).any? { |m| m.to_sym == :to_str }
    alias_method :to_str, :to_s
  end
end # class Pathname