-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathTimelaneCombine.podspec
29 lines (23 loc) · 1.11 KB
/
TimelaneCombine.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
Pod::Spec.new do |s|
s.name = 'TimelaneCombine'
s.version = '2.0.0'
s.summary = 'TimelaneCombine provides a Combine bindings for profiling Combine code with the Timelane Instrument.'
s.description = <<-DESC
TimelaneCombine provides a Combine bindings for profiling Reactive code with the Timelane Instrument.
DESC
s.homepage = 'https://github.com/icanzilb/TimelaneCombine'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Marin Todorov' => '[email protected]' }
s.source = { :git => 'https://github.com/icanzilb/TimelaneCombine.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/icanzilb'
s.source_files = 'Sources/**/*.swift'
s.swift_versions = ['5.0']
s.requires_arc = true
s.ios.deployment_target = '13.0'
s.osx.deployment_target = '10.15'
s.watchos.deployment_target = '6.0'
s.tvos.deployment_target = '13.0'
s.source_files = 'Sources/**/*.swift'
s.frameworks = 'Foundation', 'Combine'
s.dependency 'TimelaneCore', '~> 2'
end