mirror of
https://github.com/zhigang1992/Communicado.git
synced 2026-04-29 01:45:37 +08:00
20 lines
861 B
Ruby
20 lines
861 B
Ruby
Pod::Spec.new do |spec|
|
|
spec.name = 'Communicado'
|
|
spec.version = '1.3'
|
|
spec.license = { :type => 'MIT', :file => 'LICENSE' }
|
|
spec.homepage = 'https://github.com/mergesort/Communicado'
|
|
spec.authors = { 'Joe Fabisevich' => 'github@fabisevi.ch' }
|
|
spec.summary = 'The easiest way to share from your app to anywhere, because you\'ve got so much to say!'
|
|
spec.source = { :git => 'https://github.com/mergesort/Communicado.git', :tag => "#{spec.version}" }
|
|
spec.source_files = 'src/*.swift'
|
|
spec.framework = 'Foundation'
|
|
spec.requires_arc = true
|
|
spec.social_media_url = 'https://twitter.com/mergesort'
|
|
spec.ios.deployment_target = '8.0'
|
|
|
|
#spec.subspec 'FacebookSDK' do |subspec|
|
|
# subspec.source_files = 'src/*.swift', 'src/FacebookSDK/*.swift'
|
|
# subspec.dependency 'FBSDKShareKit'
|
|
#end
|
|
end
|