-
Notifications
You must be signed in to change notification settings - Fork 0
/
RentlioApi.podspec
32 lines (29 loc) · 1.21 KB
/
RentlioApi.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
28
29
30
31
32
Pod::Spec.new do |s|
s.name = "RentlioApi"
s.version = "0.0.2"
s.summary = "Swift client for consuming official Rentlio API"
s.description = <<-DESC
Swift client for consuming official [Rentlio API](https://docs.rentl.io/)
Methods:
- getUser
- getProperties
- getUnitTypes
- getUnits
- getUnitReservations
- getReservations
- getServices
- createInvoiceItem
- getServicePaymentTypesEnum
- getReservationStatusesEnum
- getCurrenciesEnum
DESC
s.homepage = "https://github.com/Rentlio/api.lib.swift"
s.license = { :type => "MIT", :file => "LICENSE" }
s.authors = { "Juraj Hilje" => "[email protected]" }
s.requires_arc = true
s.ios.deployment_target = "10.0"
s.source = { :git => "https://github.com/Rentlio/api.lib.swift.git", :tag => s.version }
s.source_files = "Source/*.swift"
s.dependency 'Just', '~> 0.6.0'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '3.0' }
end