Skip to content

Instantly share code, notes, and snippets.

@nikolaykasyanov
Created June 29, 2012 14:16
Show Gist options
  • Save nikolaykasyanov/3018215 to your computer and use it in GitHub Desktop.
Save nikolaykasyanov/3018215 to your computer and use it in GitHub Desktop.
podspec for iOS/OS X XML-RPC library
Pod::Spec.new do |s|
s.name = 'xmlrpc'
s.version = '2.3.1'
s.license = 'MIT'
s.summary = 'The Cocoa XML-RPC Framework is a simple, and lightweight, XML-RPC client framework written in Objective-C.'
s.homepage = 'https://github.com/eczarny/xmlrpc'
s.author = { 'Eric Czarny' => 'eczarny@gmail.com' }
s.source = { :git => 'https://github.com/eczarny/xmlrpc.git', :tag => '2.3.1' }
s.source_files = 'XML*.{h,m}', 'NSStringAdditions.{h,m}'
s.requires_arc = true
s.dependency 'NSData+Base64', '~> 1.0.0'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment