Sha256: aa8661c7b85ac186ad70a5f733f378f83a6fc8b05a53d95094ffd2667fc535ca
Contents?: true
Size: 418 Bytes
Versions: 25
Compression:
Stored size: 418 Bytes
Contents
# -*- ruby -*- begin require 'autotest/fsevent' rescue LoadError end Autotest.add_hook :run_command do |at| at.unit_diff = 'cat' if ENV['ONENINE'] system "rake1.9 compile" else system "rake compile" end end Autotest.add_hook :ran_command do |at| File.open('/tmp/autotest.txt', 'wb') { |f| f.write(at.results.join) } end class Autotest def ruby 'ruby1.9' end end if ENV['ONENINE']
Version data entries
25 entries across 25 versions & 4 rubygems