-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathNSLayoutEquations.podspec
More file actions
30 lines (20 loc) · 1.01 KB
/
NSLayoutEquations.podspec
File metadata and controls
30 lines (20 loc) · 1.01 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
Pod::Spec.new do |s|
s.name = "NSLayoutEquations"
s.version = "0.2.1"
s.summary = "Make NSLayoutConstraint as easy as y = mx + b."
s.description = <<-DESC
Seriously: it's just y=mx+b. So why does the average NSLayoutConstraint take 200-odd characters to initialise?
Adds two new methods:
* +[NSLayoutConstraint constraintWithFormula:LHS:RHS:]
* -[UIView constrain:to:]
Make auto layout as simple as a sentence.
DESC
s.homepage = "https://github.com/gormster/NSLayoutEquations"
s.license = 'MIT'
s.author = { "gormster" => "gormster@me.com" }
s.source = { :git => "https://github.com/gormster/NSLayoutEquations.git", :tag => "0.2.1" }
s.platform = :ios, '6.0'
s.source_files = 'NSLayoutConstraint+Equations.{h,m}'
s.public_header_files = 'NSLayoutConstraint+Equations.h'
s.requires_arc = true
end