Sha256: 6b4d82950baa4222e8b28d904aa4e5404d71950e4da9d2cc1a69153efc45b9d6

Contents?: true

Size: 1.69 KB

Versions: 1

Compression:

Stored size: 1.69 KB

Contents

# frozen_string_literal: true

Gem::Specification.new do |spec|
  spec.name = "testa_appium_driver"
  spec.version = "0.1.22"
  spec.authors = ["karlo.razumovic"]
  spec.email = ["karlo.razumovic@gmail.com"]

  spec.summary = "Appium made easy"
  spec.description = "Testa appium driver is a wrapper around ruby_lib_core. It leverages all driver features and makes them simple and easy to use, significantly reduces the amount of code needed and enables you to define locators that can be reused"
  spec.homepage = "https://github.com/Karazum/testa_appium_driver"
  spec.license = "MIT"
  spec.required_ruby_version = ">= 2.7.6"

  #spec.metadata["allowed_push_host"] = "Set to 'https://mygemserver.com'"

  spec.metadata["documentation_uri"] = "https://www.rubydoc.info/gems/testa_appium_driver"
  spec.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = "https://github.com/Karazum/testa_appium_driver"
  spec.metadata["changelog_uri"] = "https://github.com/Karazum/testa_appium_driver"

  # this can be optimized
  # spec.files         = Dir["#{File.dirname(__FILE__)}/*"]

  spec.files = Dir.chdir(File.expand_path(__dir__)) do
    `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
  end

  spec.bindir = "exe"
  spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_runtime_dependency "appium_lib_core"
  spec.add_runtime_dependency "json", ["~> 2.3"]

  spec.add_development_dependency "rubocop", ["= 1.19.0"]
  spec.add_development_dependency "rake", ["~> 13.0"]

  # For more information and examples about making a new gem, checkout our
  # guide at: https://bundler.io/guides/creating_gem.html
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
testa_appium_driver-0.1.22 testa_appium_driver.gemspec