| Pod::Spec.new do |s| |
| s.name = 'Courier' |
| s.version = '0.1.6' |
| s.summary = 'A lightweight network layer built on NSURLSession.' |
| s.license = 'MIT' |
| s.author = { |
| 'Andrew Smith' => 'drewsmits@gmail.com' |
| } |
| s.social_media_url = 'http://twitter.com/drewsmits' |
| s.requires_arc = true |
| s.platform = :ios, '7.0' |
| s.source = { |
| :git => 'ssh://git@stash.nestlabs.com:7999/clients/courier.git', |
| :tag => s.version.to_s |
| } |
| s.homepage = 'http://github.com/Drewsmits/Courier' |
| s.source_files = 'Courier/*.{h,m}' |
| s.public_header_files = 'Courier/*.h' |
| s.dependency 'Reachability', '3.2' |
| s.frameworks = 'UIKit', 'SystemConfiguration', 'Foundation' |
| end |