Surge/Surge.podspec

22 lines
594 B
Ruby

Pod::Spec.new do |s|
s.name = 'Surge'
s.version = '2.0.0'
s.license = 'MIT'
s.summary = 'Swift + Accelerate'
s.homepage = 'https://github.com/mattt/Surge'
s.social_media_url = 'http://twitter.com/mattt'
s.authors = { 'Mattt Thompson' => 'm@mattt.me' }
s.source = { :git => 'https://github.com/mattt/Surge.git', :tag => s.version }
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '3.0'
s.source_files = 'Sources/Surge/*.swift'
s.frameworks = 'Accelerate'
s.requires_arc = true
end