Sha256: 013615b9b7b79ff2c6aab8bfe862934806a8701b205f25537ca7f023b94ceea6

Contents?: true

Size: 1.66 KB

Versions: 6

Compression:

Stored size: 1.66 KB

Contents

lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "appium_instrumenter/version"


Gem::Specification.new do |spec|
  spec.name          = "appium_instrumenter"
  spec.version       = AppiumInstrumenter::VERSION
  spec.authors       = ["Rajdeep Varma"]
  spec.email         = ["mail.rajvarma@gmail.com"]

  spec.summary       = %q{Part of calabash-android ruby gem to instrument and resign apk}
  spec.description   = %q{Part of calabash-android ruby gem to instrument and resign apk.
This will modify appium uiautomator2 server apk so that it instruments app under test.}
  spec.homepage      = "https://github.com/rajdeepv/appium_instrumenter"
  spec.license       = "MIT"

  # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
  # to allow pushing to a single host or delete this section to allow pushing to any host.
  if spec.respond_to?(:metadata)
    spec.metadata["allowed_push_host"] = "https://rubygems.org"
  else
    raise "RubyGems 2.0 or newer is required to protect against " \
      "public gem pushes."
  end

  spec.files         = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> 1.16"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "rspec", "~> 3.0"
  spec.add_development_dependency "pry"
  spec.add_dependency( 'luffa' )
  spec.add_dependency( "rubyzip", "~> 1.1" )
  spec.add_dependency( 'escape', '~> 0.0.4')
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
appium_instrumenter-0.1.5 appium_instrumenter.gemspec
appium_instrumenter-0.1.4 appium_instrumenter.gemspec
appium_instrumenter-0.1.3 appium_instrumenter.gemspec
appium_instrumenter-0.1.2 appium_instrumenter.gemspec
appium_instrumenter-0.1.1 appium_instrumenter.gemspec
appium_instrumenter-0.1.0 appium_instrumenter.gemspec