-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCobra.podspec
23 lines (21 loc) · 1.1 KB
/
Cobra.podspec
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 = 'Cobra'
s.module_name = 'Cobra'
s.version = '4.0.0'
s.summary = 'Application routing framework written in Swift'
s.description = <<-DESC
Cobra is a lightweight application routing framework written in Swift that provides modular abstractions to your code base that is built on top of Swinject, a lightweight dependency injection framework.
DESC
s.homepage = 'https://github.com/locationlabs/Cobra'
s.license = 'APL2'
s.author = { 'Location Labs' => 'iosswiftdevelop@locationlabs.com' }
s.ios.deployment_target = '9.0'
s.requires_arc = true
s.source = { :git => 'https://github.com/locationlabs/Cobra.git', :tag => s.version }
s.source_files = 'Sources/**/*.{h,swift}'
s.dependency 'Swinject', '~> 2'
s.dependency 'SwinjectPropertyLoader', '~> 1'
s.subspec 'DataTypes' do |ss|
ss.source_files = 'Sources/Constructible.swift'
end
end