-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathAlamofireRSSParser.podspec
27 lines (22 loc) · 1023 Bytes
/
AlamofireRSSParser.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
26
27
#
# Be sure to run `pod lib lint AlamofireRSSParser.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "AlamofireRSSParser"
s.version = "4.0.0"
s.summary = "An RSS parser response handler for Alamofire"
s.description = "An RSS parser plugin for Alamofire. Adds a \"responseRSS()\" responseHandler to Alamofire."
s.homepage = "https://github.com/AdeptusAstartes/AlamofireRSSParser"
s.license = 'MIT'
s.author = { "Don Angelillo" => "[email protected]" }
s.source = { :git => "https://github.com/AdeptusAstartes/AlamofireRSSParser.git", :tag => s.version.to_s }
s.ios.deployment_target = '11.0'
s.requires_arc = true
s.swift_version = '5.6'
s.source_files = 'Pod/Classes/**/*'
s.dependency 'Alamofire', '~> 5.5'
end