-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCompose.podspec
More file actions
19 lines (16 loc) · 1 KB
/
Compose.podspec
File metadata and controls
19 lines (16 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = 'Compose'
s.version = '1.0'
s.summary = 'Compose is a library that helps you compose complex and dynamic views.'
s.description = <<-DESC
Compose is a data-driven library that will help encapsulate and isolate all the information needed to display a view inside some container (UICollectionView/UITableView), so you don't need to handle with all dataSource/delegate methods.
DESC
s.homepage = 'https://github.com/vivareal/Compose'
s.documentation_url = 'https://vivareal.github.io/Compose/index.html'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Bruno Bilescky' => 'brunogb@gmail.com' }
s.source = { :git => 'https://github.com/vivareal/Compose.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.frameworks = 'UIKit'
s.source_files = 'Compose/Classes/**/*'
end