bddfire.gemspec in bddfire-1.9.7 vs bddfire.gemspec in bddfire-1.9.8

- old
+ new

@@ -1,26 +1,29 @@ # -*- encoding: utf-8 -*- -$:.push File.expand_path("../lib", __FILE__) -require "bddfire/version" +$LOAD_PATH.push File.expand_path('../lib', __FILE__) +require 'bddfire/version' Gem::Specification.new do |s| - s.name = "bddfire" + s.name = 'bddfire' s.version = BDDfire::VERSION s.platform = Gem::Platform::RUBY - s.authors = ["Shashikant Jagtap"] - s.email = ["shashikant.jagtap@aol.co.uk"] - s.homepage = "https://github.com/Shashikant86/bddfire" - s.license = 'MIT' + s.authors = ['Shashikant Jagtap'] + s.email = ['shashikant.jagtap@aol.co.uk'] + s.homepage = 'https://github.com/Shashikant86/bddfire' + s.license = 'MIT' s.required_ruby_version = '>= 1.9.3' - s.summary = "BDDfire: Automate Mobile & Web apps with less code. An instant Ruby-Cucumber BDD framework" - s.description = %q{BDDfire: Automate Mobile and Web apps with less code - Instant BDD framework with Ruby, Cucumber, Capybara, selenium, Appium, Saucelabs, Browserstack, Testingbot, poltergeist, cuke_sniffer, rubocop, relish, yard and many more awesome libraries} - s.add_runtime_dependency "cucumber", '~> 1.3', '>= 1.3.18' - s.add_runtime_dependency "capybara", '~> 2.4.4', '>= 2.4.1' - s.add_runtime_dependency "rspec", '~> 3.2.0', '>= 3.0.0' - s.add_runtime_dependency "selenium-webdriver", '~> 2.44.0', '>= 2.41.0' + s.summary = 'BDDfire: Automate Mobile & Web apps with less code. An instant Ruby-Cucumber BDD framework' + s.description = 'BDDfire: Automate Mobile and Web apps with less code - Instant BDD framework with Ruby, Cucumber, Capybara, selenium, Appium, Docker, Gatling and Axe Engine' + s.add_runtime_dependency "bundler" + s.add_runtime_dependency "cucumber", '~> 2.3', '>= 2.3' + s.add_runtime_dependency "capybara", '~> 2.6', '>= 2.4' + s.add_runtime_dependency "rspec", '~> 3.4', '>= 3.0.0' + s.add_runtime_dependency "selenium-webdriver", '~> 2.52', '>= 2.52' + s.add_runtime_dependency "axe-matchers", '~> 1.1.1', '>= 1.0.0' + s.add_runtime_dependency 'be_valid_asset', '~> 1.3', '>= 1.3.0' s.add_runtime_dependency 'require_all', '~> 1.3.1', '>= 1.3.0' s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {features}/*`.split("\n") - s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } - s.require_paths = ["lib"] - s.post_install_message = "Thanks for installing BDDfire gem. More exciting BDD stuff on the way. Stay Tuned !" + s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) } + s.require_paths = ['lib'] + s.post_install_message = 'Thanks for installing BDDfire gem. BDDfire supports Docker, Load Test and Accessibility Testing' end