forked from Cleverlance/Pyramid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPyramid.podspec
24 lines (20 loc) · 931 Bytes
/
Pyramid.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
Pod::Spec.new do |spec|
spec.name = 'Pyramid'
spec.version = '1.0.0'
spec.summary = 'Basic concepts for iOS app architecture'
spec.description = <<-DESC
Basic concepts for iOS app architecture.
DESC
spec.homepage = 'https://github.com/cleverlance/Pyramid'
spec.license = { :type => 'MIT', :file => 'LICENSE' }
spec.author = { 'jakubvano' => '[email protected]' }
spec.source = { :git => 'https://github.com/cleverlance/Pyramid.git', :tag => spec.version.to_s }
spec.swift_version = '4.2'
spec.ios.deployment_target = '8.0'
spec.watchos.deployment_target = '2.0'
spec.source_files = 'Sources/Common/**/*.{swift,h,m}'
spec.ios.source_files = 'Sources/iOS/**/*.{swift,h,m}'
spec.dependency 'Swinject'
spec.dependency 'SwinjectAutoregistration'
spec.dependency 'KeychainAccess'
end