-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathFlexDataSource.podspec
More file actions
31 lines (26 loc) · 1.35 KB
/
FlexDataSource.podspec
File metadata and controls
31 lines (26 loc) · 1.35 KB
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
#
# Be sure to run `pod lib lint FlexDataSource.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'FlexDataSource'
s.version = '0.2.0'
s.summary = 'FlexDataSource makes it dead simple to create table views with multiple types of cells coexisting.'
s.swift_versions = ['4.0', '4.1', '4.2', '5.0', '5.1', '5.2']
s.description = <<-DESC
This pod moves configuration from the data source to individual cell model classes. By doing so, it becomes straightforward to mix and match cells within the same UITableView.
DESC
s.homepage = 'https://github.com/ThryvInc/flex-data-source'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Elliot' => '' }
s.source = { :git => 'https://github.com/ThryvInc/flex-data-source.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/elliot_schrock'
s.ios.deployment_target = '11.0'
s.source_files = 'Sources/flex-data-source/**/*.swift'
s.dependency 'fuikit/Core'
s.dependency 'LithoOperators'
end