-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathAppSettings.podspec
More file actions
21 lines (18 loc) · 967 Bytes
/
AppSettings.podspec
File metadata and controls
21 lines (18 loc) · 967 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "AppSettings"
s.version = "1.0.1"
s.summary = "Tool that allows automatic serialization and deserialization of objects to NSDictionary."
s.description = <<-DESC
`AppSettings` is a simple tool that allows automatic serialization
and deserialization of objects to `NSDictionary` with writing and reading them from `NSUserDefaults`.
Originally created to simply manage app settings in `NSUserDefaults`
DESC
s.homepage = "https://github.com/burczyk/AppSettings"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Kamil Burczyk" => "[email protected]" }
s.social_media_url = "http://twitter.com/KamilBurczyk"
s.platform = :ios
s.source = { :git => "https://github.com/burczyk/AppSettings.git", :tag => "#{s.version}" }
s.source_files = "AppSettings"
s.requires_arc = true
end