-
Notifications
You must be signed in to change notification settings - Fork 7
/
SettingsKit.podspec
21 lines (21 loc) · 1.01 KB
/
SettingsKit.podspec
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 = "SettingsKit"
s.version = "0.1.0"
s.summary = <<-SUMMARY
SettingsKit provides an elegant wrapper for iOS app settings.
SUMMARY
s.description = <<-DESC
SettingsKit makes working with app settings easier & safer
by providing a tidy API for retrieving, updating, and
observing preference items in your app's Settings bundle.
DESC
s.homepage = "https://github.com/dtrenz/SettingsKit"
s.license = "Apache 2.0"
s.author = { "Dan Trenz" => "[email protected]" }
s.source = { :git => "https://github.com/dtrenz/SettingsKit.git", :tag => s.version.to_s }
s.social_media_url = "https://twitter.com/dtrenz"
s.platform = :ios, "8.3"
s.requires_arc = true
s.source_files = [ "Sources/**/*", "cli/**/*", "build" ]
s.preserve_paths = [ "cli/**/*", "build" ]
end