forked from sameer49/selenium-cucumber-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
selenium-cucumber.gemspec
29 lines (27 loc) · 1.22 KB
/
selenium-cucumber.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
$:.push File.expand_path('../lib', __FILE__)
require 'selenium-cucumber/version'
Gem::Specification.new do |s|
s.name = 'selenium-cucumber'
s.version = Selenium::Cucumber::VERSION
s.date = Time.now
s.platform = Gem::Platform::RUBY
s.licenses = ['MIT']
s.summary = 'SELENIUM WEBDRIVER WITH RUBY & CUCUMBER'
s.description = 'Behavior driven development (BDD) approach to write automation test script to test Web and Android applications.'
s.authors = 'Sameer Sawant'
s.homepage = 'http://seleniumcucumber.info/'
s.email = 'sameersawant1992@gmail.com'
s.files = Dir['lib/**/*']
s.files += Dir['bin/*']
s.files += Dir['doc/*']
s.files += Dir['features-skeleton/**/*']
s.files += Dir['example/**/*']
s.executables = 'selenium-cucumber'
s.require_paths = ['lib']
s.post_install_message = 'Thank you for installing selenium-cucumber gem.'
s.required_ruby_version = '>= 1.9.3'
s.add_runtime_dependency 'cucumber', '~> 1.3', '>= 1.3.18'
s.add_runtime_dependency 'selenium-webdriver', '~> 2.44.0', '>= 2.41.0'
s.add_runtime_dependency 'chunky_png', '~> 1.3.3', '>= 1.3.0'
s.add_runtime_dependency 'appium_lib', '~> 4.1.0', '>= 4.0.0'
end