Sha256: a942e567134243f583ebf7f6c9a24cd1696a767b622687683cf89bcbb7bad9d0

Contents?: true

Size: 1 KB

Versions: 1

Compression:

Stored size: 1 KB

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 = ['scott.bonebrake@gmail.com', 'code@bootstraponline.com', 'jason.s.carr@gmail.com']
  s.homepage      = 'https://github.com/appium/appium_capybara'
  s.require_paths = ['lib']

  s.add_runtime_dependency 'appium_lib', '>= 4.1.0'
  s.add_runtime_dependency 'capybara', '~> 2.7'

  s.add_development_dependency 'appium_thor', '~> 0.0', '>= 0.0.7'

  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-1.3.0 appium_capybara.gemspec