forked from alisterscott/webdriver-user-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webdriver-user-agent.gemspec
22 lines (20 loc) · 1015 Bytes
/
webdriver-user-agent.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
Gem::Specification.new do |gem|
gem.authors = ["Alister Scott", "Jeff Morgan"]
gem.email = ["[email protected]", "[email protected]"]
gem.description = %q{A helper gem to emulate populate device user agents and resolutions when using webdriver}
gem.summary = %q{A helper gem to emulate populate device user agents and resolutions when using webdriver}
gem.homepage = "https://github.com/alisterscott/webdriver-user-agent"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "webdriver-user-agent"
gem.require_paths = ["lib"]
gem.version = "7.3"
gem.add_dependency 'selenium-webdriver'
gem.add_dependency 'facets'
gem.add_dependency 'json'
gem.add_dependency 'psych'
gem.add_development_dependency 'rspec'
gem.add_development_dependency 'watir-webdriver'
end