File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change
1
+ Pod ::Spec . new do |s |
2
+ s . name = "PodcastAPI"
3
+ s . version = "1.0.1"
4
+ s . summary = "The Official Swift Library for the Listen Notes Podcast API."
5
+ s . homepage = "https://www.listennotes.com/api/"
6
+ s . license = { :type => "MIT" }
7
+ s . author = { "Listen Notes, Inc." => "[email protected] " }
8
+ s . social_media_url = "https://twitter.com/ListenNotes"
9
+
10
+ s . requires_arc = true
11
+ s . swift_version = "5.0"
12
+ s . osx . deployment_target = "10.10"
13
+ s . ios . deployment_target = "9.0"
14
+ s . watchos . deployment_target = "3.0"
15
+ s . tvos . deployment_target = "9.0"
16
+ s . source = { :git => "https://github.com/ListenNotes/podcast-api-swift.git" , :tag => "#{ s . version } " }
17
+ s . source_files = "Sources/PodcastAPI/*.swift"
18
+ s . dependency "SwiftyJSON" , "~> 4.0"
19
+ end
You can’t perform that action at this time.
0 commit comments