-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathLYCategories.podspec
27 lines (23 loc) · 1 KB
/
LYCategories.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 = 'LYCategories'
s.summary = 'A set of useful categories for Foundation and UIKit.'
s.version = '0.9.0'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { 'DeveloperLY' => 'coderyliu@gmail.com' }
s.social_media_url = 'http://www.developerly.net'
s.homepage = 'https://github.com/DeveloperLY/LYCategories'
s.platform = :ios, '6.0'
s.ios.deployment_target = '6.0'
s.source = { :git => 'https://github.com/DeveloperLY/LYCategories.git', :tag => s.version.to_s }
s.requires_arc = true
s.source_files = 'LYCategories/**/*.{h,m}'
s.public_header_files = 'LYCategories/**/*.{h}'
non_arc_files = 'LYCategories/GTMBase64/GTMBase64.{h,m}', 'LYCategories/GTMBase64/GTMDefines.{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