Sha256: 03178b56643ad54daa36af722df510f9f2ebb11ca48423f49b74a1f02ed25cfb
Contents?: true
Size: 405 Bytes
Versions: 186
Compression:
Stored size: 405 Bytes
Contents
require 'beaker/tasks/rake_task' Beaker::Tasks::RakeTask.new do |t,args| t.type = args[:type] t.hosts = args[:hosts] end desc "Run Beaker PE tests" Beaker::Tasks::RakeTask.new("beaker:test:pe",:hosts) do |t,args| t.type = 'pe' t.hosts = args[:hosts] end desc "Run Beaker Git tests" Beaker::Tasks::RakeTask.new("beaker:test:git",:hosts) do |t,args| t.type = 'git' t.hosts = args[:hosts] end
Version data entries
186 entries across 186 versions & 1 rubygems