-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuickApi.podspec
More file actions
23 lines (19 loc) · 895 Bytes
/
Copy pathQuickApi.podspec
File metadata and controls
23 lines (19 loc) · 895 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'QuickApi'
s.version = '1.0.1'
s.summary = 'QuickApi is a easiest solution for your network layer. You can do your requests just in one line of code.'
s.description = <<-DESC
'QuickApi is a most basic way to do your request. Also with QuickApi you can do get, post, delete and multipart requests.'
DESC
s.homepage = 'https://github.com/ferhanakkan/QuickApi'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Ferhan Akkan' => 'ferhanakkan@gmail.com' }
s.source = { :git => 'https://github.com/ferhanakkan/QuickApi.git', :tag => s.version.to_s }
s.ios.deployment_target = '11.0'
s.swift_version = "5.0"
s.platforms = {
"ios": "11.0"
}
s.source_files = 'Sources/QuickApi/**/*'
s.dependency 'Alamofire', '~> 5.4.0'
end