-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIBACore.podspec
More file actions
26 lines (21 loc) · 920 Bytes
/
Copy pathIBACore.podspec
File metadata and controls
26 lines (21 loc) · 920 Bytes
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
Pod::Spec.new do |spec|
spec.name = "IBACore"
spec.version = "1.0.0"
spec.summary = "iBuildApp Core"
spec.description = <<-DESC
Public iBuildApp Core
DESC
spec.homepage = "https://ibuildapp.com"
spec.license = "LICENSE"
spec.author = { 'Anton Boyarkin' => 'anton.boyarkin@icloud.com' }
spec.platform = :ios, "10.0"
spec.source = { :git => "https://gitlab.vladimir.ibuildapp.com/ios/ibacore_public.git", :tag => "#{spec.version}" }
spec.frameworks = "UIKit", "Foundation"
spec.swift_versions = '5.0'
spec.module_name = 'IBACore'
spec.vendored_frameworks = 'Frameworks/IBACore.framework'
spec.dependency 'Alamofire', '4.9.0'
spec.dependency 'XMLMapper', '1.5.3'
spec.dependency 'Cache', '5.2.0'
spec.dependency 'SwiftAudio', '0.11.1'
end