-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathRESTAPI.podspec
More file actions
22 lines (16 loc) · 943 Bytes
/
RESTAPI.podspec
File metadata and controls
22 lines (16 loc) · 943 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'RESTAPI'
s.version = '0.9.2'
s.swift_version = '4.2'
s.summary = 'Lightweight REST API communicator written in Swift, based on Foundation.'
s.description = <<-DESC
Lightweight REST API communicator written in Swift, based on Foundation. An easy tool to communicate with your server's API in JSON format. Supports querys and valid JSON objects in the HTTP body. The framework supports GET, POST, PUT and DELETE requests for now.
DESC
s.homepage = 'https://github.com/Gujci/RESTAPI'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Máté Gujgiczer' => 'mate.gujgiczer@icloud.com' }
s.source = { :git => 'https://github.com/Gujci/RESTAPI.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.3'
s.source_files = 'RESTAPI/*.swift'
s.dependency 'SwiftyJSON'
end