17 lines
573 B
Ruby
17 lines
573 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'iTellAFriend'
|
|
s.version = '1.1.0'
|
|
s.license = 'Apache License, Version 2.0'
|
|
s.summary = 'iTellAFriend is an iOS toolkit for displaying a preconfigued mail composer' \
|
|
'with a "Tell a Friend" template in ios apps.'
|
|
s.homepage = 'https://github.com/aporat/iTellAFriend'
|
|
s.author = { 'Adar Porat' => 'http://github.com/aporat' }
|
|
s.source = { :git => 'https://github.com/aporat/iTellAFriend.git', :tag => '1.1.0' }
|
|
|
|
s.platform = :ios
|
|
s.source_files = 'src/*.{h,m}'
|
|
|
|
s.frameworks = 'MessageUI'
|
|
|
|
end
|