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