-
Notifications
You must be signed in to change notification settings - Fork 11
/
Bento.podspec
23 lines (19 loc) · 1.04 KB
/
Bento.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 = "Bento"
s.version = "0.4"
s.summary = "Component based abstraction on top of UITableView and UICollectionView"
s.description = <<-DESC
Component-based abstraction on top of UITableView and UICollectionView.
Provides a declarative way to render data in UITableView and UICollectionView
DESC
s.homepage = "https://github.com/Babylonpartners/Bento"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Babylon iOS" => "[email protected]" }
s.ios.deployment_target = '10.0'
s.source = { :git => "https://github.com/Babylonpartners/Bento.git", :tag => "#{s.version}" }
s.source_files = 'Bento/*.swift', 'Bento/**/*.swift', 'Common/*.swift'
s.resource_bundles = { 'Bento' => 'Bento/Resources/Media.xcassets' }
s.exclude_files = 'Bento/Components.playground/**/*'
s.swift_version = "4.2"
s.dependency "FlexibleDiff", "= 0.0.8"
end