summaryrefslogtreecommitdiff
path: root/lib/rake/tasklib.rb
blob: 465a58a0c7e991a47ab5a901370dab72ba8ea3a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env ruby

require 'rake'

module Rake

  # Base class for Task Libraries.
  class TaskLib

    include Cloneable

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

end