Files
JBChartView/SSKeychain/0.1.4/SSKeychain.podspec
T
Victor Ilyukevich 675dda2eee specified source files of SSKeychain more strict
this needed to prevent inserting  SSKeychain.podspec into project
Also I have added LICENSE into SSKeychain spec
2012-11-11 17:53:58 +03:00

13 lines
608 B
Ruby

Pod::Spec.new do |s|
s.name = 'SSKeychain'
s.version = '0.1.4'
s.summary = 'Simple Cocoa wrapper for the keychain that works on Mac and iOS.'
s.homepage = 'https://github.com/samsoffes/sskeychain'
s.author = { 'Sam Soffes' => 'sam@samsoff.es' }
s.source = { :git => 'https://github.com/samsoffes/sskeychain.git', :tag => '0.1.4' }
s.description = 'SSKeychain is a simple utility class for making the system keychain less sucky.'
s.source_files = 'SSKeychain.{h,m}'
s.frameworks = 'Security'
s.license = { :type => 'MIT', :file => 'LICENSE' }
end