Base class for Task Libraries.

Methods
Included Modules
Public Instance methods
paste(a,b)

Make a symbol by pasting two strings together.

    # File lib/rake/tasklib.rb, line 13
13:     def paste(a,b)
14:       (a.to_s + b.to_s).intern
15:     end