class RakeUtil
Public Class Methods
add_marker(msg)
click to toggle source
# File lib/tasks/rake_util.rb, line 4 def self.add_marker(msg) puts "#" * 30 + " #{msg} " + '#' * 30 end
execute(cmd)
click to toggle source
# File lib/tasks/rake_util.rb, line 14 def self.execute(cmd) puts cmd system cmd end
warning(msg)
click to toggle source
# File lib/tasks/rake_util.rb, line 8 def self.warning(msg) puts "#" * 50 puts msg puts "#" * 50 end