-
Notifications
You must be signed in to change notification settings - Fork 3
/
PercentageMargin.podspec
15 lines (15 loc) · 1.07 KB
/
PercentageMargin.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Pod::Spec.new do |s|
s.name = "PercentageMargin"
s.version = "1.0.2"
s.license = { :type => "MIT" }
s.homepage = "https://github.com/exchangegroup/PercentageMargin"
s.summary = "A library for creating percentage-based margins with Auto Layout constraints in iOS / Swift."
s.description = <<-DESC
This a library for creating percentage-based margins between views and their superviews in iOS. It allows, for example, to create an Auto Layout constraint for the trailing margin of 20% between the view and its superview. Because the margin is percentage-based its absolute size will adapt automatically when the superview size changes.
DESC
s.authors = { "Evgenii Neumerzhitckii" => "sausageskin@gmail.com" }
s.source = { :git => "https://github.com/exchangegroup/PercentageMargin.git", :tag => s.version }
s.screenshots = "https://raw.githubusercontent.com/exchangegroup/PercentageMargin/master/Graphics/overview.png"
s.source_files = "PercentageMargin/**/*.swift"
s.ios.deployment_target = "8.0"
end