-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathQuickRulerSuite.podspec
33 lines (29 loc) · 1.6 KB
/
QuickRulerSuite.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
Pod::Spec.new do |s|
s.name = "QuickRulerSuite"
s.version = "1.0.3"
s.summary = "A suite to quick create ruler control on iOS, which seems to be attractive. iOS上标尺控件的集合。"
s.description = <<-DESC
A suite to quick create ruler control on iOS, which seems to be attractive. iOS上标尺控件的集合,该项目支持 Cocoapods 的 subspec。
DESC
s.homepage = "https://github.com/pcjbird/QuickRulerSuite"
s.license = 'MIT'
s.author = {"pcjbird" => "[email protected]"}
s.source = {:git => "https://github.com/pcjbird/QuickRulerSuite.git", :tag => s.version.to_s}
s.social_media_url = 'http://www.lessney.com'
s.requires_arc = true
s.documentation_url = 'https://github.com/pcjbird/QuickRulerSuite/blob/master/README.md'
s.screenshot = 'https://github.com/pcjbird/QuickRulerSuite/blob/master/logo.png'
s.platform = :ios, '8.0'
s.frameworks = 'Foundation', 'UIKit', 'CoreGraphics'
#s.preserve_paths = ''
s.source_files = 'QuickRulerSuite/QuickRulerSuite.h'
s.public_header_files = 'QuickRulerSuite/QuickRulerSuite.h'
s.resource_bundles = {
'QuickRulerSuite' => ['QuickRulerBundles/*.{png}'],
}
s.pod_target_xcconfig = { 'OTHER_LDFLAGS' => '-lObjC' }
s.subspec 'QuickSportsRuler' do |ss|
ss.source_files = 'QuickRulerSuite/QuickSportsRuler/*.{h,m}'
ss.public_header_files = 'QuickRulerSuite/QuickSportsRuler/QuickSportsRuler.h', 'QuickRulerSuite/QuickSportsRuler/QuickSportsRulerStyle.h'
end
end