module Rake::Funnel::Extensions::REXML::Functions

Public Instance Methods

lower_case(string) click to toggle source
# File lib/rake/funnel/extensions/rexml.rb, line 10
def lower_case(string)
  string(string).downcase
end
matches(string, test) click to toggle source
# File lib/rake/funnel/extensions/rexml.rb, line 14
def matches(string, test)
  File.fnmatch?(test, string(string), File::FNM_CASEFOLD)
end