Skip to content

Commit

Permalink
Commit NSLayoutEquations
Browse files Browse the repository at this point in the history
  • Loading branch information
gormster committed Jan 25, 2013
1 parent 84f10a8 commit ee8a676
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions 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

0 comments on commit ee8a676

Please sign in to comment.