forked from testableapple/xcmonkey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xcmonkey.gemspec
32 lines (25 loc) · 1.02 KB
/
xcmonkey.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
29
30
31
32
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'xcmonkey/version'
Gem::Specification.new do |spec|
spec.name = 'xcmonkey'
spec.version = Xcmonkey::VERSION
spec.authors = ['testableapple']
spec.email = ['a.alterpesotskiy@mail.ru']
spec.summary = 'xcmonkey is a tool for doing randomised UI testing of iOS apps'
spec.homepage = 'https://github.com/testableapple/xcmonkey'
spec.license = 'MIT'
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.bindir = 'bin'
spec.executables = ['xcmonkey']
spec.files = `git ls-files -z`.split("\x0")
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.4'
spec.add_dependency('colorize', '>= 0.8.1', '< 1.2.0')
spec.add_dependency('commander')
spec.metadata['rubygems_mfa_required'] = 'true'
end