-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathYMOverrideTestSupport.podspec
More file actions
31 lines (25 loc) · 1.19 KB
/
YMOverrideTestSupport.podspec
File metadata and controls
31 lines (25 loc) · 1.19 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
#
# Be sure to run `pod lib lint Override.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'YMOverrideTestSupport'
s.version = '2.7.0'
s.summary = 'Test support helpers for YMOverride feature management'
s.description = <<-DESC
This pod provides test support facilities for the Override pod.
DESC
s.homepage = 'https://github.com/Yahoo/Override'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Adam Kaplan' => 'adkapx@gmail.com', 'David Grandinetti' => 'dbgrandi@yahooinc.com' }
s.source = { :git => 'https://github.com/yahoo/Override.git', :tag => s.version.to_s }
s.ios.deployment_target = '10.0'
s.tvos.deployment_target = '10.0'
s.swift_versions = ['4.0', '4.2', '5.0']
s.source_files = 'Source/TestSupport/*.{swift,h}'
# Require the version of OverrideTestSupport to match the version of Override
s.dependency 'YMOverride', '=' + s.version.to_s
end