14 lines
678 B
Ruby
14 lines
678 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'FatSecretKit'
|
|
s.version = '0.0.2'
|
|
s.summary = 'Client for interacting with the FatSecret API.'
|
|
s.homepage = 'https://github.com/mysterioustrousers/FatSecretKit'
|
|
s.license = 'BSD'
|
|
s.author = { 'Parker Wightman' => 'parkerwightman@gmail.com' }
|
|
s.source = { :git => 'https://github.com/mysterioustrousers/FatSecretKit.git', :tag => '0.0.2' }
|
|
s.source_files = 'FatSecretKit/FatSecret/*.{h,m}'
|
|
s.dependency 'SVHTTPRequest', '~> 0.3'
|
|
s.platform = :ios, '5.1'
|
|
s.requires_arc = true
|
|
end
|