14 lines
510 B
Ruby
14 lines
510 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'Lockbox'
|
|
s.version = '1.1.0'
|
|
s.license = 'MIT'
|
|
s.summary = 'Lockbox is an Objective-C utility class for storing data securely in the keychain. Use it to store small, sensitive bits of data securely.'
|
|
s.homepage = 'https://github.com/granoff/Lockbox'
|
|
s.author = 'Mark H. Granoff'
|
|
|
|
s.source = { :git => 'https://github.com/granoff/Lockbox.git', :tag => '1.1.0' }
|
|
|
|
s.source_files = 'Lockbox.{h,m}'
|
|
s.clean_path = 'LockBox'
|
|
s.framework = 'Security'
|
|
end |