14 lines
601 B
Ruby
14 lines
601 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'LUKeychainAccess'
|
|
s.version = '1.0.1'
|
|
s.summary = 'A wrapper for iOS Keychain Services that behaves just like NSUserDefaults.'
|
|
s.homepage = 'https://github.com/TheLevelUp/LUKeychainAccess'
|
|
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
|
s.author = { 'Costa Walcott' => 'costa@thelevelup.com' }
|
|
s.source = { :git => 'https://github.com/TheLevelUp/LUKeychainAccess.git', :tag => '1.0.1' }
|
|
s.platform = :ios, '5.0'
|
|
s.source_files = 'LUKeychainAccess'
|
|
s.frameworks = 'Security'
|
|
s.requires_arc = true
|
|
end
|