-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathxcknife.gemspec
31 lines (24 loc) · 1.07 KB
/
xcknife.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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'xcknife'
Gem::Specification.new do |s|
s.name = 'xcknife'
s.version = XCKnife::VERSION
s.authors = ['Daniel Ribeiro']
s.email = %w[[email protected] [email protected]]
s.homepage = 'https://github.com/square/xcknife'
s.licenses = ['Apache-2.0']
s.summary = 'Simple tool for optimizing XCTest runs across machines'
s.description = <<-DESCRIPTION
Simple tool for optimizing XCTest runs across machines.
Works by leveraging xctool's json-streams timing and test data.
DESCRIPTION
s.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR).reject { |f| f =~ /^spec/ } + ['TestDumper/TestDumper.dylib']
s.bindir = 'bin'
s.executables = %w[xcknife xcknife-min xcknife-test-dumper]
s.require_paths = ['lib']
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.required_ruby_version = '>= 2.6.0'
s.add_development_dependency 'bundler', '>= 2.1.0'
end