-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathRelayout.podspec
33 lines (25 loc) · 1.27 KB
/
Relayout.podspec
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
32
33
Pod::Spec.new do |s|
s.name = "Relayout"
s.version = "1.1.0"
s.summary = "Swift microframework for declaring Auto Layout constraints functionally"
s.description = <<-DESC
Relayout is a Swift microframework to make using Auto Layout easier with static and dynamic layouts.
Instead of trying to hold references to specific constraints and mutating them when your state
changes, create a single object that returns all the constraints you need for any given UI state.
Relayout will apply those new constraints automatically as needed. This makes it super easy to create
really dynamic layouts that change or react to UI state changes using Auto Layout.
DESC
s.homepage = "https://github.com/stevestreza/Relayout"
s.license = { :type => "ISC", :file => "LICENSE" }
s.author = "Steve Streza"
s.social_media_url = "https://twitter.com/SteveStreza"
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '9.0'
s.osx.deployment_target = '10.10'
s.source = { :git => "https://github.com/stevestreza/Relayout.git", :tag => "1.1.0" }
s.source_files = "Framework", "Framework/**/*.swift"
s.frameworks = "Foundation"
s.ios.frameworks = "UIKit"
s.tvos.frameworks = "UIKit"
s.osx.frameworks = "AppKit"
end