-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathappium_lib_core.gemspec
28 lines (23 loc) · 1.1 KB
/
appium_lib_core.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'appium_lib_core/version'
Gem::Specification.new do |spec|
spec.required_ruby_version = Gem::Requirement.new('>= 3.1')
spec.name = 'appium_lib_core'
spec.version = Appium::Core::VERSION
spec.authors = ['Kazuaki MATSUO']
spec.email = ['fly.49.89.over@gmail.com']
spec.summary = 'Minimal Ruby library for Appium.'
spec.description = 'Minimal Ruby library for Appium.'
spec.homepage = '/~https://github.com/appium/ruby_lib_core/'
spec.license = 'Apache-2.0'
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{(^(doc|docs|test|spec|features|ci-jobs|.github|script)/|release_notes.md|.gitignore|azure-pipelines.yml|.rubocop.yml)})
end
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_dependency 'faye-websocket', '~> 0.11.0'
spec.add_dependency 'selenium-webdriver', '~> 4.21'
spec.metadata['rubygems_mfa_required'] = 'true'
end