-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathBricksAndTiles.podspec
More file actions
24 lines (19 loc) · 1.05 KB
/
BricksAndTiles.podspec
File metadata and controls
24 lines (19 loc) · 1.05 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
Pod::Spec.new do |s|
s.name = 'BricksAndTiles'
s.version = '0.0.3'
s.summary = 'A composable solution for building reusable lists in Swift/UIKit. As easy as playing with Legos.'
s.homepage = 'https://github.com/mugbug/BricksAndTiles'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Pedro Zaroni' => 'zaronipedro@outlook.com' }
s.source = { :git => 'https://github.com/mugbug/BricksAndTiles.git', :tag => "v#{s.version}" }
s.swift_version = '5.1'
s.ios.deployment_target = '11.0'
s.dependency 'PaintAndBrush', '0.2.0'
s.source_files = 'BricksAndTiles/Source/**/*.swift'
s.subspec 'CollectionView' do |collectionView|
collectionView.source_files = 'BricksAndTiles/Source/CollectionView/**/*.swift'
end
s.subspec 'TableView' do |tableView|
tableView.source_files = 'BricksAndTiles/Source/TableView/**/*.swift', 'BricksAndTiles/Source/Extensions/**/*.swift'
end
end