module Exodus::RakeHelper
Public Instance Methods
step()
click to toggle source
# File lib/exodus/helpers/rake_helper.rb, line 10 def step ENV['STEP'] end
time_it(task) { || ... }
click to toggle source
# File lib/exodus/helpers/rake_helper.rb, line 3 def time_it(task, &block) puts "#{task} starting..." start = Time.now yield puts "#{task} Done in (#{Time.now-start}s)!!" end