Sha256: a68f49eb477ee5cfd9e3ad638f521341f092a7ec6f2bef7e4abeb33459abd848
Contents?: true
Size: 705 Bytes
Versions: 4
Compression:
Stored size: 705 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 do |t| t.files = ["lib/watir-classic/yard/global_macros.rb", "lib/**/*.rb"] end # # ------------------------------ 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.7.0 | Rakefile |
watir-classic-3.6.0 | Rakefile |
watir-classic-3.5.0 | Rakefile |
watir-classic-3.4.0 | Rakefile |