-
Notifications
You must be signed in to change notification settings - Fork 4
/
MYSSharedSettings.podspec
24 lines (24 loc) · 1.23 KB
/
MYSSharedSettings.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
Pod::Spec.new do |s|
s.name = "MYSSharedSettings"
s.version = "0.2.0"
s.summary = "Access local settings and settings shared via iCloud with properties."
s.description = <<-DESC
### Instructions
* Subclass MYSSharedSettings.
* Add properties.
* Declare the properties as @dynamic in @implementation.
* Now you can use it like so: `[YourSubclass sharedSettings].themeColor = [UIColor blackColor];`
* Turn on iCloud syncing with `[YourSubclass sharedSettings].syncSettingsWithiCloud = YES;` This will store the settings in
both `NSUserDefaults` and `NSUbiquitousKeyValueStore`.
DESC
s.homepage = "https://github.com/mysterioustrousers/MYSSharedSettings"
s.license = 'MIT'
s.author = { "Adam Kirk" => "[email protected]" }
s.ios.deployment_target = '6.0'
s.osx.deployment_target = '10.8'
s.source = { :git => "https://github.com/mysterioustrousers/MYSSharedSettings.git", :tag => "#{s.version}" }
s.source_files = 'MYSSharedSettings/*.{h,m}'
s.framework = 'Foundation'
s.requires_arc = true
s.dependency 'MYSRuntime', '~> 0.0.3'
end