Sha256: d81e0293111701e9d9c7f1b1c149d73948084d0d6bbbe4e2de07d7cb3f48ddc0
Contents?: true
Size: 621 Bytes
Versions: 4
Compression:
Stored size: 621 Bytes
Contents
require 'rubygems' require 'bundler' Bundler::GemHelper.install_tasks task :default => :spec require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) RSpec::Core::RakeTask.new(:rcov) do |spec| spec.rcov = true end require 'yard' YARD::Rake::YardocTask.new # # ------------------------------ watirspec ----------------------------------- # if File.exist?(path = "spec/watirspec/watirspec.rake") load path end namespace :watirspec do desc 'Initialize and fetch the watirspec submodule' task :init do sh "git submodule init" sh "git submodule update" end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
watir-classic-3.3.0 | Rakefile |
watir-classic-3.2.0 | Rakefile |
watir-classic-3.2.0.rc1 | Rakefile |
watir-classic-3.1.0 | Rakefile |