-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLRConnection.podspec
25 lines (21 loc) · 945 Bytes
/
LRConnection.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Pod::Spec.new do |s|
s.name = "LRConnection"
s.version = "0.2.1"
s.summary = "An HTTP library that makes networking easier"
s.description = <<-DESC
LRConnection is an HTTP library that makes networking easier
DESC
s.homepage = "https://github.com/tomrlq/LRConnection"
s.license = "MIT"
s.author = { "Ruan Lingqi" => "[email protected]" }
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/tomrlq/LRConnection.git", :tag => "#{s.version}" }
s.source_files = "LRConnection/LRConnection/LRConnection.h"
s.public_header_files = "LRConnection/LRConnection/LRConnection.h"
s.requires_arc = true
s.subspec 'Core' do |ss|
ss.source_files = 'LRConnection/LRConnection/*.{h,m}'
ss.public_header_files = "LRConnection/LRConnection/LRConnectionManager.h"
ss.exclude_files = 'LRConnection/LRConnection/LRConnection.h'
end
end