Sha256: dea88c634e904f813f6b3e25c35e65b17798645a7ce3aef507207b8e0410760f
Contents?: true
Size: 1018 Bytes
Versions: 1
Compression:
Stored size: 1018 Bytes
Contents
require_relative 'lib/appium_capybara/version' class Gem::Specification def remove_zip_files array array.reject { |e| File.extname(e).downcase == '.zip' } end end Gem::Specification.new do |s| # 1.8.x is not supported s.required_ruby_version = '>= 1.9.3' s.name = 'appium_capybara' s.version = Appium::Capybara::VERSION s.date = Appium::Capybara::DATE s.license = 'http://www.apache.org/licenses/LICENSE-2.0.txt' s.description = s.summary = 'Enables appium support in Capybara' s.description += '.' # avoid identical warning s.authors = s.email = ['sbonebrake@yammer-inc.com', 'code@bootstraponline.com'] s.homepage = 'https://github.com/appium/appium_capybara' s.require_paths = ['lib'] s.add_runtime_dependency 'appium_lib', '~> 4', '>= 4.1.0' s.add_runtime_dependency 'capybara', '~> 2.4', '>= 2.4.1' s.add_development_dependency 'appium_thor', '~> 0.0', '>= 0.0.6' s.files = s.remove_zip_files(`git ls-files`.split("\n")) end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
appium_capybara-0.0.2 | appium_capybara.gemspec |