20 lines
514 B
Ruby
20 lines
514 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'Surge'
|
|
s.version = '0.2.1'
|
|
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.source_files = 'Source/*.swift'
|
|
|
|
s.frameworks = 'Accelerate'
|
|
|
|
s.requires_arc = true
|
|
end
|