Skip to content

Instantly share code, notes, and snippets.

@wangsha
Created July 30, 2014 09:55
Show Gist options
  • Save wangsha/b89d494057e02db821c0 to your computer and use it in GitHub Desktop.
Save wangsha/b89d494057e02db821c0 to your computer and use it in GitHub Desktop.
Secure-NSUserDefaults podspec
Pod::Spec.new do |s|
s.name = 'Secure-NSUserDefaults'
s.version = '1.0.0'
s.platform = :ios, '5.0'
s.license = 'MIT'
s.summary = 'View controller container, enabling you to present multiple controllers on top of one another. '
s.description = 'Secure NSUserDefaults allows you to protect your user defaults against unauthorized modifications on iOS and Mac OS X. You can also link user defaults to the machine they’ve been created on which makes plist sharing impossible. Please note that this implementation does not use encryption. It is therefore not suitable to store sensitive data.'
s.author = { 'Matthias Plappert' => '[email protected]' }
s.homepage = 'https://github.com/matthiasplappert/Secure-NSUserDefaults'
s.source = { :git => 'https://github.com/matthiasplappert/Secure-NSUserDefaults.git', :commit => "5501549d45a6aa0e027d64445ff8ad794dc4a485" }
s.source_files = '*.{h,m}'
s.requires_arc = true
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment