-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathIntrepidTesting.podspec
More file actions
22 lines (21 loc) · 926 Bytes
/
IntrepidTesting.podspec
File metadata and controls
22 lines (21 loc) · 926 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "IntrepidTesting"
s.version = "0.10.0"
s.summary = "A collection of test extensions to the Swift Standard Library"
s.description = <<-DESC
Collection of test extensions and utility classes by and for the developers at Intrepid Pursuits.
DESC
s.homepage = "https://github.com/IntrepidPursuits/swift-wisdom"
s.license = "MIT"
s.authors = { "Colden Prime" => "colden@intrepid.io" }
s.source = { :git => "https://github.com/IntrepidPursuits/swift-wisdom.git", :tag => "#{s.version}" }
s.platform = :ios
s.ios.deployment_target = "8.0"
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '4.0' }
s.default_subspec = "Core"
s.swift_versions = ['4.2', '5.0']
s.subspec "Core" do |cs|
cs.frameworks = "XCTest"
cs.source_files = "SwiftWisdomTests/Testing/**/*.swift"
end
end