Sha256: 59439470de3b6ac7415f428881b38970c98209ffe986a7556cb1c9b35e8799a4
Contents?: true
Size: 579 Bytes
Versions: 170
Compression:
Stored size: 579 Bytes
Contents
#!/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. # # NOTE: DEPRECATED! This method is kinda stupid. I don't know why # I didn't just use string interpolation. But now other task # libraries depend on this so I can't remove it without breaking # other people's code. So for now it stays for backwards # compatibility. BUT DON'T USE IT. def paste(a,b) # :nodoc: (a.to_s + b.to_s).intern end end end
Version data entries
170 entries across 124 versions & 13 rubygems