This repository was archived by the owner on Sep 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUIContainer.podspec
More file actions
31 lines (25 loc) · 1.43 KB
/
UIContainer.podspec
File metadata and controls
31 lines (25 loc) · 1.43 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 UIContainer.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 = 'UIContainer'
s.version = '2.1.1'
s.summary = 'Creating containers for UIViewController, UIView, UITableViewCell and UICollectionViewCell'
s.homepage = 'https://github.com/umobi/UIContainer'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'brennobemoura' => 'brenno@umobi.com.br' }
s.source = { :git => 'https://github.com/umobi/UIContainer.git', :tag => s.version.to_s }
s.description = <<-DESC
UIContainer helps by allowing you to keep the code more specific. You can write code for view controllers like AddressesViewController and for view AddressView that can be used in ProfileViewController and in the AddressesViewController using the ContainerTableViewCell<AddressView> wrapper. This should decrease the excess of code for the same data but in different view controllers.
DESC
s.ios.deployment_target = '10.0'
s.tvos.deployment_target = '10.0'
# s.macos.deployment_target = "10.13"
s.swift_version = '5.2'
s.source_files = 'Sources/UIContainer/**/*'
s.dependency 'ConstraintBuilder', ">= 2.0.0", "< 3.0.0"
end