Files
NWPusher/NWPusher.podspec
2017-04-25 15:27:20 -07:00

16 lines
668 B
Ruby

Pod::Spec.new do |s|
s.name = 'NWPusher'
s.version = '0.7.5'
s.summary = 'OS X and iOS application and framework to play with the Apple Push Notification service (APNs).'
s.homepage = 'https://github.com/noodlewerk/NWPusher'
s.license = { :type => 'BSD', :file => 'LICENSE.txt' }
s.author = { 'Leonard van Driel' => 'leonardvandriel@gmail.com' }
s.ios.deployment_target = '6.0'
s.osx.deployment_target = '10.8'
s.requires_arc = true
s.source = { :git => 'https://github.com/noodlewerk/NWPusher.git', :tag => s.version.to_s }
s.source_files = 'Classes/*.{h,m,c}'
s.framework = 'Security'
end