forked from timkoopmans/watirgrid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
25 lines (23 loc) · 849 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
require 'rake'
begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "watirgrid"
gem.summary = %Q{WatirGrid: Web Application Testing in Ruby across a grid network.}
gem.description = %Q{WatirGrid allows for distributed testing across a grid network using Watir.}
gem.email = "[email protected]"
gem.homepage = "http://github.com/90kts/watirgrid"
gem.authors = ["Tim Koopmans"]
gem.version = "1.1.5"
end
rescue LoadError
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
end
require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
version = File.exist?('VERSION') ? File.read('VERSION') : ""
rdoc.rdoc_dir = 'rdoc'
rdoc.title = "watirgrid #{version}"
rdoc.rdoc_files.include('README*')
rdoc.rdoc_files.include('lib/**/*.rb')
end