13 lines
429 B
Ruby
13 lines
429 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'Orbiter'
|
|
s.version = '0.0.1'
|
|
s.license = 'MIT'
|
|
s.summary = 'Push Notification Registration for iOS.'
|
|
s.homepage = 'https://github.com/mattt/Orbiter'
|
|
s.authors = { 'Mattt Thompson' => 'm@mattt.me' }
|
|
s.source = { :git => 'https://github.com/mattt/Orbiter.git', :tag => '0.0.1' }
|
|
s.source_files = 'Orbiter'
|
|
s.requires_arc = true
|
|
s.dependency 'AFNetworking', '>= 0.9'
|
|
end
|