From ee8a676729ed752ba942c2d42b92ce1f09c83aed Mon Sep 17 00:00:00 2001 From: Morgan Date: Fri, 25 Jan 2013 13:52:59 +1100 Subject: [PATCH] Commit NSLayoutEquations --- .../0.1.1/NSLayoutEquations.podspec | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 NSLayoutEquations/0.1.1/NSLayoutEquations.podspec diff --git a/NSLayoutEquations/0.1.1/NSLayoutEquations.podspec b/NSLayoutEquations/0.1.1/NSLayoutEquations.podspec new file mode 100644 index 00000000000000..f721b4875835f8 --- /dev/null +++ b/NSLayoutEquations/0.1.1/NSLayoutEquations.podspec @@ -0,0 +1,30 @@ +Pod::Spec.new do |s| + s.name = "NSLayoutEquations" + s.version = "0.1.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.1.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