-
Notifications
You must be signed in to change notification settings - Fork 5
/
GenericCellControllers.podspec
26 lines (21 loc) · 1.22 KB
/
GenericCellControllers.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
Pod::Spec.new do |spec|
spec.name = 'GenericCellControllers'
spec.version = '1.2.0'
spec.license = { :type => 'MIT' }
spec.homepage = 'https://github.com/Busuu/generic-cell-controllers'
spec.authors = { 'Javier Valdera' => '[email protected]' }
spec.summary = 'Framework that makes it easier to work with heterogeneous lists of data in iOS.'
spec.description = <<-DESC
Generic Cell Controllers provide protocols, implementations and extensions that will make work
with heterogeneous lists of data in iOS really easy. It provides a way to abstract the details
of each particular cell configuration and management away from the View Controllers, Data
Sources and Delegates.
DESC
spec.source = { :git => 'https://github.com/Busuu/generic-cell-controllers.git', :tag => '1.2.0' }
spec.swift_version = '5.0'
spec.platform = :ios, "12.0"
spec.ios.deployment_target = '12.0'
spec.source_files = 'GenericCellControllers/Source/**/*.{h,m,swift}'
spec.ios.source_files = 'GenericCellControllers/Source/**/*.{h,m,swift}'
spec.ios.framework = 'UIKit'
end