-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSimulatorRecorder.podspec
More file actions
32 lines (23 loc) · 863 Bytes
/
Copy pathSimulatorRecorder.podspec
File metadata and controls
32 lines (23 loc) · 863 Bytes
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
Pod::Spec.new do |s|
s.name = "SimulatorRecorder"
s.version = "0.1"
s.summary = "Internal pod for the app."
s.description = <<~END
A pod containing just sources for now.
END
s.homepage = "https://github.com/grigorye/SimulatorRecorder"
s.license = 'MIT'
s.author = { "Grigory Entin" => "grigory.entin@gmail.com" }
# s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.13'
# s.watchos.deployment_target = "2.0"
# s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/grigorye/SimulatorRecorder.git" }
s.resource_bundles = { 'SimulatorRecorder-Sources' => 'SimulatorRecorder/SimulatorRecorder' }
s.static_framework = true
s.subspec 'Tests-Sources' do |ss|
ss.resource_bundles = {
'SimulatorRecorderTests-Sources' => ['SimulatorRecorder/SimulatorRecorderTests']
}
end
end