Class: Rake::TaskLib

Inherits:
Object
  • Object
show all
Includes:
Cloneable
Defined in:
lib/rake/tasklib.rb

Overview

Base class for Task Libraries.

Direct Known Subclasses

PackageTask, RDocTask, TestTask

Instance Method Summary collapse

Methods included from Cloneable

#clone

Instance Method Details

#paste(a, b) ⇒ Object

Make a symbol by pasting two strings together.



13
14
15
# File 'lib/rake/tasklib.rb', line 13

def paste(a,b)
  (a.to_s + b.to_s).intern
end