-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathwatir_drops.gemspec
27 lines (22 loc) · 1.08 KB
/
watir_drops.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
# coding: utf-8
Gem::Specification.new do |spec|
spec.name = 'watir_drops'
spec.version = '0.7.2'
spec.authors = ['Titus Fortner']
spec.email = ['titusfortner@gmail.com']
spec.summary = %q{Page Object Framework for use with Watir}
spec.description = %q{This gem leverages the Watir test framework to allow for easy modeling of specific web
application information, allowing it to be decoupled from the tests}
spec.homepage = 'https://github.com/titusfortner/watir_drops'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.require_paths = ['lib']
spec.add_runtime_dependency 'watir', '~> 6.0'
spec.add_runtime_dependency 'watir_model', '~> 0.4'
spec.add_development_dependency 'bundler', '~> 1.10'
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'rspec', '~> 3.3'
spec.add_development_dependency 'factory_girl'
spec.add_development_dependency 'data_magic'
spec.add_development_dependency 'webdrivers'
end