Sha256: 5fd42105c07360c40197ef6873999e57d6c7ca3b0162365052fd1c2f1079b296
Contents?: true
Size: 898 Bytes
Versions: 66
Compression:
Stored size: 898 Bytes
Contents
# -*- coding: utf-8 -*- # #-- # Copyright (C) 2009-2016 Thomas Leitner <t_leitner@gmx.at> # # This file is part of kramdown which is licensed under the MIT. #++ # # All the code in this file is backported from Ruby 1.8.7 sothat kramdown works under 1.8.5 # # :stopdoc: require 'rbconfig' if RUBY_VERSION <= '1.8.6' require 'rexml/parsers/baseparser' module REXML module Parsers class BaseParser UNAME_STR= "(?:#{NCNAME_STR}:)?#{NCNAME_STR}" unless const_defined?(:UNAME_STR) end end end if !String.instance_methods.include?("start_with?") class String def start_with?(str) self[0, str.length] == str end def end_with?(str) self[-str.length, str.length] == str end end end end if !Symbol.instance_methods.include?("<=>") class Symbol def <=>(other) self.to_s <=> other.to_s end end end
Version data entries
66 entries across 63 versions & 16 rubygems