Method: Project#init_runs

Defined in:
lib/clenver/project.rb

#init_runsObject



104
105
106
107
108
109
110
111
112
113
114
115
116
# File 'lib/clenver/project.rb', line 104

def init_runs
  logger.debug("init_runs")
  @yaml.each do |uri, content|
    if content.is_a?(Hash)
      #run
      unless content['run'].nil?
        content['run'].each do |cmd|
          puts %x[#{cmd}]
        end
      end
    end
  end
end