-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDMSwift.podspec
20 lines (20 loc) · 990 Bytes
/
DMSwift.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "DMSwift"
s.version = "0.2.0"
s.summary = "A Download Manager"
s.description = <<-DESC
DMSwift provides a simple and efficient way to download files. It can simultaneously download a large number of files, monitors the progress of downloading, concurrently post-process downloaded files, supports logging, has a flexible configuration and easy to use API.
DESC
s.homepage = "https://github.com/sh-khashimov/DMSwift"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Sherzod Khashimov" => "[email protected]" }
s.social_media_url = ""
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.watchos.deployment_target = "2.0"
s.tvos.deployment_target = "9.0"
s.swift_versions = "5.0"
s.source = { :git => "https://github.com/sh-khashimov/DMSwift.git", :tag => s.version.to_s }
s.source_files = "Sources/**/*"
s.frameworks = "Foundation"
end