forked from ashfurrow/Nimble-Snapshots
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Nimble-Snapshots.podspec
39 lines (36 loc) · 1.49 KB
/
Nimble-Snapshots.podspec
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
33
34
35
36
37
38
39
Pod::Spec.new do |s|
s.name = "Nimble-Snapshots"
s.version = "9.7.0"
s.summary = "Nimble matchers for iOSSnapshotTestCase"
s.description = <<-DESC
Nimble matchers for iOSSnapshotTestCase. Highly derivative of [Expecta Matchers for iOSSnapshotTestCase](https://github.com/dblock/ios-snapshot-test-case-expecta).
DESC
s.homepage = "https://github.com/ashfurrow/Nimble-Snapshots"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Ash Furrow" => "[email protected]" }
s.social_media_url = "http://twitter.com/ashfurrow"
s.ios.deployment_target = "13.0"
s.tvos.deployment_target = "13.0"
s.swift_version = '5.0'
s.pod_target_xcconfig = {
'ENABLE_BITCODE' => 'NO',
'ENABLE_TESTING_SEARCH_PATHS' => 'YES',
}
s.source = { :git => "https://github.com/ashfurrow/Nimble-Snapshots.git", :tag => s.version }
s.default_subspec = "Core"
s.frameworks = "Foundation", "XCTest", "UIKit"
s.subspec "Core" do |ss|
ss.source_files = "Nimble_Snapshots/*.{h,m,swift}",
"Nimble_Snapshots/DynamicType/*.{swift,m,h}",
"Nimble_Snapshots/DynamicSize/*.{swift}"
ss.dependency "iOSSnapshotTestCase", "~> 8.0"
ss.dependency "Nimble", "~> 13.0"
end
# for compatibiliy reasons
s.subspec "DynamicType" do |ss|
ss.dependency "Nimble-Snapshots/Core"
end
s.subspec "DynamicSize" do |ss|
ss.dependency "Nimble-Snapshots/Core"
end
end