Skip to content

Commit 4b56958

Browse files
author
Richard Piazza
committed
Added CocoaPods podspec
1 parent 74dd474 commit 4b56958

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

CodeQuickKit.podspec

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
#
2+
# Be sure to run `pod lib lint CodeQuickKit.podspec' to ensure this is a
3+
# valid spec before submitting.
4+
#
5+
# Any lines starting with a # are optional, but their use is encouraged
6+
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
7+
#
8+
9+
Pod::Spec.new do |s|
10+
s.name = "CodeQuickKit"
11+
s.version = "1.0.0"
12+
s.summary = "An iOS Library simplifying some everyday tasks."
13+
s.description = <<-DESC
14+
CodeQuickKit is a collection of Objective-C Categories and helper classes designed to
15+
quicken iOS development. This collection includes (but not limited to): logging,
16+
NSObject/JSON de/serialization, JSON Web APIs, UIStoryboard/UIAlertController shortcuts,
17+
and CoreData wrappers.
18+
DESC
19+
20+
s.homepage = "https://github.com/richardpiazza/CodeQuickKit"
21+
s.license = 'MIT'
22+
s.author = { "Richard Piazza" => "[email protected]" }
23+
s.source = { :git => "https://github.com/richardpiazza/CodeQuickKit.git", :tag => s.version.to_s }
24+
s.social_media_url = 'https://twitter.com/richardpiazza'
25+
26+
s.platform = :ios, '8.0'
27+
s.requires_arc = true
28+
29+
s.source_files = 'CodeQuickKit-ObjC/*'
30+
# s.resource_bundles = { 'CodeQuickKit' => ['Pod/Assets/*.png'] }
31+
32+
s.public_header_files = 'CodeQuickKit-ObjC/*.h'
33+
s.frameworks = 'UIKit', 'CoreData'
34+
end

0 commit comments

Comments
 (0)