howitzer.gemspec in howitzer-1.1.1 vs howitzer.gemspec in howitzer-2.0.0

- old
+ new

@@ -1,45 +1,38 @@ # -*- encoding: utf-8 -*- + require File.expand_path('../lib/howitzer/version', __FILE__) Gem::Specification.new do |gem| gem.author = 'Roman Parashchenko' gem.email = 'howitzer@strongqa.com' - gem.description = %q{Howitzer uses the best practices and design patterns allowing to generate a test project in less than 5 minutes. It has out-of-the-box configurations for parallel cross-browser testing in the Cloud.} - gem.summary = %q{Ruby based framework for acceptance testing} + gem.description = 'Howitzer uses the best practices and design patterns allowing to generate a test project in' \ + ' less than 5 minutes. It has out-of-the-box configurations for parallel cross-browser testing in the cloud.' + gem.summary = 'Ruby based framework for acceptance testing' gem.homepage = 'http://strongqa.github.io/howitzer/' gem.license = 'MIT' gem.bindir = 'bin' - gem.files = `git ls-files`.split($\) - gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } + gem.files = `git ls-files`.split($OUTPUT_RECORD_SEPARATOR) + gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.name = 'howitzer' gem.require_paths = ['lib'] gem.version = Howitzer::VERSION - gem.required_ruby_version = '>= 1.9.3' + gem.required_ruby_version = '>= 2.2.2' - gem.add_runtime_dependency 'nokogiri', '~> 1.6' if gem.platform.to_s =~ /mswin|mingw/ - gem.add_runtime_dependency 'rack', '~> 1.0' - gem.add_runtime_dependency 'tins', '1.6.0' - gem.add_runtime_dependency 'rake' + gem.add_runtime_dependency 'activesupport', '~>5.0' + gem.add_runtime_dependency 'capybara', ['>= 2.1', '< 3.0'] gem.add_runtime_dependency 'gli' - gem.add_runtime_dependency 'syntax' - gem.add_runtime_dependency 'cucumber', '~>2.0' - gem.add_runtime_dependency 'rspec', '~>3.2' - gem.add_runtime_dependency 'sexy_settings' - gem.add_runtime_dependency 'repeater' gem.add_runtime_dependency 'launchy' gem.add_runtime_dependency 'log4r', '~>1.1.10' - gem.add_runtime_dependency 'rest-client', '~>1.8' - gem.add_runtime_dependency 'poltergeist' - gem.add_runtime_dependency 'rawler' - gem.add_runtime_dependency 'capybara' + gem.add_runtime_dependency 'nokogiri', '~> 1.6' if gem.platform.to_s =~ /mswin|mingw/ + gem.add_runtime_dependency 'rake' + gem.add_runtime_dependency 'rspec', '~>3.2' gem.add_runtime_dependency 'selenium-webdriver' - gem.add_runtime_dependency 'activesupport', '~>4.2' - gem.add_runtime_dependency 'testingbot' + gem.add_runtime_dependency 'sexy_settings' gem.add_development_dependency('aruba') - gem.add_development_dependency('fuubar') gem.add_development_dependency('ffaker') + gem.add_development_dependency('fuubar') gem.add_development_dependency('yard') end