forked from allaboutapps/DataSource
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MBDataSource.podspec
33 lines (26 loc) · 2.36 KB
/
MBDataSource.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
27
28
29
30
31
32
33
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = "MBDataSource"
s.version = "5.2.0"
s.swift_version = "4.0"
s.summary = "Simplifies the setup of UITableView data sources and cells using type-safe cell configurators."
s.description = <<-DESC
Framework to simplify the setup of UITableView data sources and cells.
Separates the model (represented by a generic DataSource) from the representation (TableViewDataSource) by using type-safe cell configurators (TableViewCellConfigurator) to handle the table cell setup in an simple way.
DESC
s.homepage = "https://github.com/mbuchetics/DataSource"
s.screenshots = "https://github.com/mbuchetics/DataSource/raw/master/Resources/screenshot.png"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = { :type => "MIT", :file => "LICENSE" }
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.author = { "Matthias Buchetics" => "[email protected]" }
s.social_media_url = "https://twitter.com/mbuchetics"
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.platform = :ios, "10.0"
# ――― Source --------―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => "https://github.com/mbuchetics/DataSource.git", :tag => "#{s.version}" }
s.source_files = 'DataSource/*.swift'
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.requires_arc = true
s.dependency "Diff", "~> 0.5"
end