-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDeclarativeLayout.podspec
More file actions
20 lines (18 loc) · 1.06 KB
/
DeclarativeLayout.podspec
File metadata and controls
20 lines (18 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = 'DeclarativeLayout'
s.version = '0.8.0'
s.summary = 'A declarative, expressive and efficient way to lay out your views.'
s.description = <<-DESC
* Declarative - Tell the framework what the layout of your views should be and let the framework intelligently add/modify/remove constraints and views for you.
* Expressive - Let your code visually express the hierarchy of your views.
* Flexible - Write the same constraints you already do, using whatever autolayout constraint DSL you prefer.
* Small - Small and readable Swift 5 codebase.
DESC
s.homepage = 'https://github.com/HotCocoaTouch/DeclarativeLayout'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'HotCocoaTouch' => 'srscottrobbins@gmail.com' }
s.source = { :git => 'https://github.com/hotcocoatouch/DeclarativeLayout.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.source_files = 'DeclarativeLayout/Classes/**/*'
s.frameworks = 'UIKit'
end