mirror of
https://github.com/bobbimanners/emailler.git
synced 2024-11-18 06:08:04 +00:00
10 lines
228 B
Ruby
10 lines
228 B
Ruby
$:.unshift(File.dirname(__FILE__)) unless
|
|
$:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
|
|
|
|
def log_msg(msg)
|
|
puts msg
|
|
end
|
|
|
|
Dir.glob("tc_*.rb").each do |tc|
|
|
require tc
|
|
end |