Sha256: b13477100e32f04d38478ec6d5d47a06fa7cdaa4b68ae3a2fb1e7336c5aaf8fc
Contents?: true
Size: 597 Bytes
Versions: 1
Compression:
Stored size: 597 Bytes
Contents
require "bundler/gem_tasks" task default: :matest task :spec do arg_files = ENV["FILES"] && ENV["FILES"].split(/[\s,]+/) all_files = Rake::FileList["./spec/matest_specs/**/*_spec.rb"] files = arg_files || all_files puts "\nRuning tests for: #{ files.join(" ") }\n\n" system *["./bin/matest"].concat(files) end task :matest do arg_files = ENV["FILES"] && ENV["FILES"].split(/[\s,]+/) all_files = Rake::FileList["./spec/matest_specs/**/*_spec.rb"] files = arg_files || all_files puts "\nRuning tests for: #{ files.join(" ") }\n\n" system *["./bin/matest"].concat(files) end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
matest-1.3.2 | Rakefile |