Sha256: 5c4a9d3ffdc4abbd6aff131ecb7a1062aad2ba2f3bfbf7b0b6b599399474cedc
Contents?: true
Size: 457 Bytes
Versions: 44
Compression:
Stored size: 457 Bytes
Contents
# Copyright (c) 2008 Michael Fellinger m.fellinger@gmail.com # All files in this distribution are subject to the terms of the Ruby license. module Ramaze module CoreExtensions # Extensions for String module String unless ''.respond_to?(:end_with?) # Compatibility with 1.9 def end_with?(other) other = other.to_s self[-other.size, other.size] == other end end end end end
Version data entries
44 entries across 44 versions & 5 rubygems