Sha256: 5df920c458a2700c7be8158ba0d44a582cf8b4b0a35939a305cbc762d0868ba2
Contents?: true
Size: 550 Bytes
Versions: 40
Compression:
Stored size: 550 Bytes
Contents
$:.unshift File.expand_path('lib') # load given tasks file, reporting errors without failing def load_tasks(tasks) load tasks rescue Exception => exception $stderr << "** loading #{tasks.sub(File.expand_path('.'),'')} failed: " case exception when LoadError $stderr << "to use, install the gems it requires\n" else $stderr << ([exception.message] + exception.backtrace[0..2]).join("\n ") << "\n\n" end end Dir["Rakefile.d/*.rake"].sort.each {|t| load_tasks t} task :default => :spec task :ci => ['rcov:verify', 'cucumber']
Version data entries
40 entries across 40 versions & 4 rubygems