Skip to content

Commit 133e4ac

Browse files
committed
add podspec
1 parent 7def09d commit 133e4ac

File tree

1 file changed

+124
-0
lines changed

1 file changed

+124
-0
lines changed

AWLThemeManager.podspec

Lines changed: 124 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,124 @@
1+
#
2+
# Be sure to run `pod spec lint AWLThemeManager.podspec' to ensure this is a
3+
# valid spec and to remove all comments including this before submitting the spec.
4+
#
5+
# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
6+
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
7+
#
8+
9+
Pod::Spec.new do |s|
10+
11+
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
12+
#
13+
# These will help people to find your library, and whilst it
14+
# can feel like a chore to fill in it's definitely to your advantage. The
15+
# summary should be tweet-length, and the description more in depth.
16+
#
17+
18+
s.name = "AWLThemeManager"
19+
s.version = "1.0.0"
20+
s.summary = "AWLThemeManager is a lightweight theme manager for iOS."
21+
s.homepage = "https://github.com/appwilldev/AWLThemeManager"
22+
# s.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"
23+
24+
25+
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
26+
#
27+
# Licensing your code is important. See http://choosealicense.com for more info.
28+
# CocoaPods will detect a license file if there is a named LICENSE*
29+
# Popular ones are 'MIT', 'BSD' and 'Apache License, Version 2.0'.
30+
#
31+
32+
s.license = "MIT"
33+
# s.license = { :type => "MIT", :file => "FILE_LICENSE" }
34+
35+
36+
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
37+
#
38+
# Specify the authors of the library, with email addresses. Email addresses
39+
# of the authors are extracted from the SCM log. E.g. $ git log. CocoaPods also
40+
# accepts just a name if you'd rather not provide an email address.
41+
#
42+
# Specify a social_media_url where others can refer to, for example a twitter
43+
# profile URL.
44+
#
45+
46+
s.author = { "neo.chen" => "[email protected]" }
47+
# Or just: s.author = "yun.chen"
48+
# s.authors = { "yun.chen" => "[email protected]" }
49+
# s.social_media_url = "http://twitter.com/yun.chen"
50+
51+
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
52+
#
53+
# If this Pod runs only on iOS or OS X, then specify the platform and
54+
# the deployment target. You can optionally include the target after the platform.
55+
#
56+
57+
# s.platform = :ios
58+
s.platform = :ios, "5.0"
59+
60+
# When using multiple platforms
61+
# s.ios.deployment_target = "5.0"
62+
# s.osx.deployment_target = "10.7"
63+
64+
65+
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
66+
#
67+
# Specify the location from where the source should be retrieved.
68+
# Supports git, hg, bzr, svn and HTTP.
69+
#
70+
71+
s.source = { :git => "https://github.com/appwilldev/AWLThemeManager.git", :tag => s.version.to_s }
72+
73+
74+
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
75+
#
76+
# CocoaPods is smart about how it includes source code. For source files
77+
# giving a folder will include any swift, h, m, mm, c & cpp files.
78+
# For header files it will include any header in the folder.
79+
# Not including the public_header_files will make all headers public.
80+
#
81+
82+
s.source_files = "AWLThemeManager/*.{h,m}"
83+
s.public_header_files = "AWLThemeManager/*.h"
84+
85+
86+
# ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
87+
#
88+
# A list of resources included with the Pod. These are copied into the
89+
# target bundle with a build phase script. Anything else will be cleaned.
90+
# You can preserve files from being cleaned, please don't preserve
91+
# non-essential files like tests, examples and documentation.
92+
#
93+
94+
# s.resource = "icon.png"
95+
# s.resources = "Resources/*.png"
96+
97+
# s.preserve_paths = "FilesToSave", "MoreFilesToSave"
98+
99+
100+
# ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
101+
#
102+
# Link your library with frameworks, or libraries. Libraries do not include
103+
# the lib prefix of their name.
104+
#
105+
106+
# s.framework = "SomeFramework"
107+
# s.frameworks = "SomeFramework", "AnotherFramework"
108+
109+
# s.library = "iconv"
110+
# s.libraries = "iconv", "xml2"
111+
112+
113+
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
114+
#
115+
# If your library depends on compiler flags you can set them in the xcconfig hash
116+
# where they will only apply to your library. If you depend on other Podspecs
117+
# you can include multiple dependencies to ensure it works.
118+
119+
s.requires_arc = true
120+
121+
# s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
122+
# s.dependency "JSONKit", "~> 1.4"
123+
124+
end

0 commit comments

Comments
 (0)