class Rake::TaskLib

def paste(a,b)

Make a symbol by pasting two strings together.
def paste(a,b)
  (a.to_s + b.to_s).intern
end