-
Notifications
You must be signed in to change notification settings - Fork 218
/
YYCategories.podspec
27 lines (23 loc) · 1.06 KB
/
YYCategories.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
Pod::Spec.new do |s|
s.name = 'YYCategories'
s.summary = 'A manager to get iOS keyboard views, frames and transform.'
s.version = '1.0.4'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { 'ibireme' => '[email protected]' }
s.social_media_url = 'http://blog.ibireme.com'
s.homepage = 'https://github.com/ibireme/YYCategories'
s.platform = :ios, '6.0'
s.ios.deployment_target = '6.0'
s.source = { :git => 'https://github.com/ibireme/YYCategories.git', :tag => s.version.to_s }
s.requires_arc = true
s.source_files = 'YYCategories/**/*.{h,m}'
s.public_header_files = 'YYCategories/**/*.{h}'
non_arc_files = 'YYCategories/Foundation/NSObject+YYAddForARC.{h,m}', 'YYCategories/Foundation/NSThread+YYAdd.{h,m}'
s.ios.exclude_files = non_arc_files
s.subspec 'no-arc' do |sna|
sna.requires_arc = false
sna.source_files = non_arc_files
end
s.libraries = 'z'
s.frameworks = 'UIKit', 'CoreFoundation' ,'QuartzCore', 'CoreGraphics', 'CoreImage', 'CoreText', 'ImageIO', 'Accelerate'
end