Base class for Task Libraries.
Methods
Included Modules
Public Instance methods
Make a symbol by pasting two strings together.
[ show source ]
# File lib/rake/tasklib.rb, line 13 13: def paste(a,b) 14: (a.to_s + b.to_s).intern 15: end