Sha256: 970d31bfd3d7f84d3ec69e353d4c7b85c36b40840734e55045b2f0e5233e9a5f
Contents?: true
Size: 1.16 KB
Versions: 4
Compression:
Stored size: 1.16 KB
Contents
require 'date' module Mocha module Inspect module ObjectMethods def mocha_inspect address = __id__ * 2 address += 0x100000000 if address < 0 inspect =~ /#</ ? "#<#{self.class}:0x#{Kernel.format('%<address>x', address: address)}>" : inspect end end module ArrayMethods def mocha_inspect(wrapped = true) unwrapped = collect(&:mocha_inspect).join(', ') wrapped ? "[#{unwrapped}]" : unwrapped end end module HashMethods def mocha_inspect unwrapped = collect { |key, value| "#{key.mocha_inspect} => #{value.mocha_inspect}" }.join(', ') Hash.ruby2_keywords_hash?(self) ? unwrapped : "{#{unwrapped}}" end end module TimeMethods def mocha_inspect "#{inspect} (#{to_f} secs)" end end module DateMethods def mocha_inspect to_s end end end end class Object include Mocha::Inspect::ObjectMethods end class Array include Mocha::Inspect::ArrayMethods end class Hash include Mocha::Inspect::HashMethods end class Time include Mocha::Inspect::TimeMethods end class Date include Mocha::Inspect::DateMethods end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
mocha-2.2.0 | lib/mocha/inspect.rb |
mocha-2.1.0 | lib/mocha/inspect.rb |
mocha-2.0.4 | lib/mocha/inspect.rb |
mocha-2.0.3 | lib/mocha/inspect.rb |