forked from advantis/ADVUserDefaults
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathADVUserDefaults.podspec
More file actions
23 lines (18 loc) · 881 Bytes
/
ADVUserDefaults.podspec
File metadata and controls
23 lines (18 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "ADVUserDefaults"
s.version = "1.0.1"
s.summary = "Easy access to the User Defaults System"
s.description = <<-DESC
`ADVUserDefaults` is a wrapper that simplifies and formalizes usage of the User Defaults System in your app.
Subclass it and any declared dynamic properties will be automatically saved into `NSUserDefaults`.
DESC
s.homepage = "https://github.com/advantis/ADVUserDefaults"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Yuri Kotov" => "yuri.kotov@advantis.pro" }
s.social_media_url = "https://twitter.com/advantiss"
s.ios.deployment_target = "4.3"
s.osx.deployment_target = "10.7"
s.requires_arc = false
s.source = { :git => "https://github.com/advantis/ADVUserDefaults.git", :tag => "1.0.1" }
s.source_files = "ADVUserDefaults"
end