-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDADataManager.podspec
44 lines (30 loc) · 1.45 KB
/
DADataManager.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
38
39
40
41
42
43
44
#
# Be sure to run `pod spec lint DADataManager.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |s|
s.name = "DADataManager"
s.version = "0.2.2"
s.summary = "Lightweight storage library for iOS."
s.description = <<-DESC
Singular responses and binary data persistancy alternative to NSUserDefaults.
DESC
s.homepage = "https://github.com/darkarmy64/DADataManager"
# s.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "avikantz" => "[email protected]" }
s.social_media_url = "http://twitter.com/darkarmyIN"
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/darkarmy64/DADataManager.git", :tag => "0.2.2", :branch => "master" }
s.source_files = "DADataManager", "DADataManager/**/*.{h,m}"
s.exclude_files = "DADataManagerDemo/"
s.public_header_files = "DADataManager/**/*.h"
# s.resource = "icon.png"
# s.resources = "Resources/*.png"
s.requires_arc = true
# s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
# s.dependency "JSONKit", "~> 1.4"
end