Sha256: d1e5341e956ae59ce1a65ce3912e3f2c649ded27268b5896a469bda98d6c12d5

Contents?: true

Size: 731 Bytes

Versions: 5

Compression:

Stored size: 731 Bytes

Contents

require 'rubygems'
require 'bundler'

Bundler::GemHelper.install_tasks

task :default => :spec

task :release => :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

5 entries across 5 versions & 1 rubygems

Version Path
watir-classic-4.3.0 Rakefile
watir-classic-4.2.0 Rakefile
watir-classic-4.1.0 Rakefile
watir-classic-4.0.1 Rakefile
watir-classic-4.0.0 Rakefile