module EacRubyUtils

def patch(target, patch)

def patch(target, patch)
  return if target.included_modules.include?(patch)
  target.send(:include, patch)
end