-
Notifications
You must be signed in to change notification settings - Fork 6
/
A0PreMainTime.podspec
30 lines (27 loc) · 1.15 KB
/
A0PreMainTime.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
#
# Be sure to run `pod lib lint A0PreMainTime.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 = 'A0PreMainTime'
s.version = '0.2.4'
s.summary = 'accurately measure the pre-main stage'
s.description = <<-DESC
To accurately measure the pre-main phase time and better time measurement.
DESC
s.homepage = 'https://github.com/binzi56/A0PreMainTime'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'firejadebin' => '[email protected]' }
s.source = { :git => 'https://github.com/binzi56/A0PreMainTime.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.requires_arc = true
s.subspec 'PreMainTime' do |sPreMainTime|
sPreMainTime.vendored_frameworks = 'A0PreMainTime/Framework/*.Framework'
end
s.subspec 'TimeMonitor' do |sTimeMonitor|
sTimeMonitor.source_files = 'A0PreMainTime/TimeMonitor/*.{h,m}'
end
end