Sha256: f60bbf219379c56c863ace312600cedf93700338b3e8f43c83da8ae89616887f
Contents?: true
Size: 303 Bytes
Versions: 10
Compression:
Stored size: 303 Bytes
Contents
class Symbol def try_dup self end ## # @param o<String, Symbol> The path component to join with the string. # # @return <String> The original path concatenated with o. # # @example # :merb/"core_ext" #=> "merb/core_ext" def /(o) File.join(self.to_s, o.to_s) end end
Version data entries
10 entries across 10 versions & 3 rubygems