-
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathappium_console.gemspec
More file actions
32 lines (25 loc) · 1.04 KB
/
appium_console.gemspec
File metadata and controls
32 lines (25 loc) · 1.04 KB
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
29
30
31
32
def self.add_to_path(path)
path = File.expand_path "../#{path}/", __FILE__
$:.unshift path unless $:.include? path
end
add_to_path 'lib'
require 'appium_console/version'
Gem::Specification.new do |s|
s.required_ruby_version = '>= 3.1'
s.name = 'appium_console'
s.version = Appium::Console::VERSION
s.license = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
s.description = s.summary = 'Appium Ruby Console'
s.description += '.' # avoid identical warning
s.authors = ['code@bootstraponline.com', 'Kazuaki Matsuo']
s.email = %w[code@bootstraponline.com fly.49.89.over@gmail.com]
s.homepage = 'https://github.com/appium/ruby_console' # published as appium_console
s.require_paths = ['lib']
# appium_lib version must match ruby console version.
s.add_dependency 'appium_lib', '>= 14.0.0'
s.add_dependency 'pry', '>= 0.14', '< 0.17'
s.add_dependency 'thor', '>= 0.19', '< 2.0'
s.executables = ['arc']
s.files = `git ls-files`.split "\n"
s.metadata['rubygems_mfa_required'] = 'true'
end