Class Rake::TaskLib
In: lib/rake/tasklib.rb
Parent: Object

Base class for Task Libraries.

Methods

paste  

Included Modules

Cloneable

Public Instance methods

Make a symbol by pasting two strings together.

[Source]

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

[Validate]