Newer
Older
2018-fumichan-thesis / form-sample / vendor / bundle / ruby / 2.5.0 / gems / backports-3.11.4 / lib / backports / 1.9.1 / symbol / match.rb
unless Symbol.method_defined? :match
  class Symbol
    def match(with)
      to_s =~ with
    end

    alias_method :=~, :match
  end
end