Skip to content

Commit

Permalink
update JCNetworking.podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
imjoych committed Jun 10, 2016
1 parent dd911d5 commit cc7fbc4
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion JCNetworking.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'JCNetworking'
s.version = '0.0.2'
s.version = '0.1.0'
s.license = 'MIT'
s.summary = 'A useful iOS networking framework based on AFNetworking and JSONModel.'
s.homepage = 'https://github.com/boych/JCNetworking'
Expand All @@ -10,10 +10,18 @@ Pod::Spec.new do |s|
s.platform = :ios, '7.0'
s.requires_arc = true

s.subspec "JCRequester" do |ss|
ss.source_files = "JCNetworking/JCRequester/*.{h,m}"
end

s.subspec "JCDownloader" do |ss|
ss.source_files = "JCNetworking/JCDownloader/*.{h,m}"
end

s.subspec "JCNetworkReachability" do |ss|
ss.source_files = "JCNetworking/JCNetworkReachability/*.{h,m}"
end

s.dependency 'AFNetworking', '~> 3.1.0'
s.dependency 'JSONModel', '~> 1.2.0'

Expand Down

0 comments on commit cc7fbc4

Please sign in to comment.