Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCCKit.podspec
More file actions
Latest commit
27 lines (21 loc) · 1.1 KB
/
Copy pathCCKit.podspec
File metadata and controls
27 lines (21 loc) · 1.1 KB
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.newdo |s|
s.name="CCKit"
s.version="0.0.3"
s.summary="Cliq Consulting reusable components for iOS."
s.description=<<-DESC
Helpers, MACROS and MVC iOS components provided by Cliq Consulting.
* Lifecycle management for network based models
* Common views, view controllers, collection layouts, collection cells and helpers
DESC
s.homepage="http://cliqconsulting.com"
s.license={:type=>'MIT',:file=>'LICENSE'}
s.authors={"Glenn Marcus"=>"glenn@cliqconsulting.com","Leonardo Lobato"=>"leo@cliqconsulting.com"}
s.social_media_url="http://twitter.com/cliqconsulting"
s.platform=:ios,'7.0'
s.source={:git=>"https://github.com/cliq/CCKit.git",:tag=>s.version.to_s}
s.source_files='CCKit/**/*.{h,m}'
s.exclude_files='CCKit/CCTwitterLoginManager.{h,m}','CCKit/OAuthCore/*','CCKit/TWiOSReverseAuth/*'
s.library='z'
s.requires_arc=true
s.ios.xcconfig={'HEADER_SEARCH_PATHS'=>'$(PODS_ROOT)/../../CCKit/**'}
end