# File lib/ramaze/snippets/string/start_with.rb, line 7
        def start_with?(other)
          other = other.to_s
          self[0, other.size] == other
        end