forked from watir/watir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
watir.gemspec
46 lines (39 loc) · 1.85 KB
/
watir.gemspec
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift lib unless $LOAD_PATH.include?(lib)
require 'watir/version'
Gem::Specification.new do |s|
s.name = 'watir'
s.version = Watir::VERSION
s.required_ruby_version = '>= 2.6.0'
s.platform = Gem::Platform::RUBY
s.authors = ['Alex Rodionov', 'Titus Fortner', 'Justin Ko']
s.homepage = 'http://github.com/watir/watir'
s.summary = 'Watir powered by Selenium'
s.description = <<~DESCRIPTION_MESSAGE
Watir stands for Web Application Testing In Ruby
It facilitates the writing of automated tests by mimicing the behavior of a user interacting with a website.
DESCRIPTION_MESSAGE
s.license = 'MIT'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
s.require_paths = ['lib']
s.add_dependency 'selenium-webdriver', '~> 4.0'
s.add_runtime_dependency 'regexp_parser', '>= 1.2', '< 3'
s.add_development_dependency 'activesupport', '~> 4.0', '>= 4.1.11' # for pluralization during code generation
s.add_development_dependency 'coveralls_reborn'
s.add_development_dependency 'fuubar'
s.add_development_dependency 'nokogiri'
s.add_development_dependency 'pry'
s.add_development_dependency 'rake', '>= 12.3.3'
s.add_development_dependency 'rspec', '~> 3.0'
s.add_development_dependency 'rspec-retry'
s.add_development_dependency 'rubocop', '~> 0.59'
s.add_development_dependency 'selenium_statistics'
s.add_development_dependency 'simplecov-console'
s.add_development_dependency 'webdrivers', '~> 4.7'
s.add_development_dependency 'webidl', '>= 0.2.2'
s.add_development_dependency 'yard', '> 0.8.2.1'
s.add_development_dependency 'yard-doctest', '~> 0.1.14'
end