Sha256: f0c016160cfac184c2b279742e9f638390fe6878770bbb27d95a3f78214561db
Contents?: true
Size: 415 Bytes
Versions: 4
Compression:
Stored size: 415 Bytes
Contents
# Copyright (c) 2006 Michael Fellinger m.fellinger@gmail.com # All files in this distribution are subject to the terms of the Ruby license. # Extensions for String class String # A convinient way to do File.join # # Example: # 'a' / 'b' # -> 'a/b' # File.dirname(__FILE__) / 'bar' # -> "ramaze/snippets/string/bar" def / obj File.join(self, obj.to_s) end end
Version data entries
4 entries across 4 versions & 1 rubygems