Sha256: 43b76bc7067e5cccb0742e6e32a1d3ef35a58d80d0be442b3d3b89433bffa334

Contents?: true

Size: 1.16 KB

Versions: 6

Compression:

Stored size: 1.16 KB

Contents

# encoding: utf-8

def self.add_to_path path
 path = File.expand_path "../#{path}/", __FILE__

 $:.unshift path unless $:.include? path
end

add_to_path 'lib'

require 'appium_lib/common/version'

Gem::Specification.new do |s|
  # 1.8.x is not supported
  s.required_ruby_version = '>= 1.9.3'

  s.name = 'appium_lib'
  s.version = Appium::VERSION
  s.date = Appium::DATE
  s.license = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
  s.description = s.summary = 'Ruby library for Appium'
  s.description += '.' # avoid identical warning
  s.authors = s.email = [ 'code@bootstraponline.com' ]
  s.homepage = 'https://github.com/appium/ruby_lib' # published as appium_lib
  s.require_paths = [ 'lib' ]

  s.add_runtime_dependency 'selenium-webdriver', '~> 2.39', '>= 2.39.0'
  s.add_runtime_dependency 'awesome_print', '~> 1.2', '>= 1.2.0'
  s.add_runtime_dependency 'json', '~> 1.8', '>= 1.8.1'
  s.add_runtime_dependency 'toml', '~> 0.0', '>= 0.0.4'
  s.add_runtime_dependency 'posix-spawn', '~> 0.3', '>= 0.3.8'

  s.add_development_dependency 'rake', '~> 10.0', '>= 10.0.4'
  s.add_development_dependency 'yard', '~> 0.8', '>= 0.8.7.3'

  s.files = `git ls-files`.split "\n"
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
appium_lib-0.24.1 appium_lib.gemspec
appium_lib-0.24.0 appium_lib.gemspec
appium_lib-0.23.0 appium_lib.gemspec
appium_lib-0.22.1 appium_lib.gemspec
appium_lib-0.22.0 appium_lib.gemspec
appium_lib-0.21.0 appium_lib.gemspec