-
Notifications
You must be signed in to change notification settings - Fork 3
/
LCategory.podspec
37 lines (33 loc) · 1.37 KB
/
LCategory.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
34
35
36
37
#
# Be sure to run `pod lib lint NAME.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "LCategory"
s.version = "0.1.5"
s.summary = "Categories of LFramework."
s.description = <<-DESC
Categories of LFramework.
* Include LCategory.h to use.
DESC
s.homepage = "http://www.superarts.org"
s.screenshots = "http://www.superarts.org/_/rsrc/1299485048239/home/world_256.png",
"http://www.superarts.org/_/rsrc/1299485069968/home/disc_256.png"
s.license = 'MIT'
s.author = { "Leo" => "[email protected]" }
s.source = { :git => "https://github.com/superarts/LCategory.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/superarts_org'
s.platform = :ios, '5.0'
# s.ios.deployment_target = '5.0'
# s.osx.deployment_target = '10.7'
s.requires_arc = true
s.source_files = 'category/**/*.{h,m}'
# s.resources = 'assets/*.png'
s.ios.exclude_files = 'Classes/osx/**/*.{h,m}'
s.osx.exclude_files = 'Classes/ios/**/*.{h,m}'
# s.public_header_files = 'classes/**/*.h'
s.frameworks = 'UIKit'
# s.dependency 'JSONKit', '~> 1.4'
end