Sha256: 879932bbd22e820fe8ffb678249ddecc9a7ab7c98f4345baf03d80ea58600882
Contents?: true
Size: 449 Bytes
Versions: 18
Compression:
Stored size: 449 Bytes
Contents
module Metasploit module Model # Adds {#real_pathname} to class, which will convert `#real_path` `String` to a `Pathname`. module RealPathname # `#real_path` as a `Pathname`. # # @return [Pathname] unless `#real_path` is `nil`. # @return [nil] if `#real_path` is `nil`. def real_pathname if real_path Pathname.new(real_path) else nil end end end end end
Version data entries
18 entries across 18 versions & 1 rubygems