-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathStoryboardConstraint.podspec
17 lines (17 loc) · 1.01 KB
/
StoryboardConstraint.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |s|
s.name = 'StoryboardConstraint'
s.version = '0.1.2'
s.summary = 'A simple way to use programmatically Autolayout Constraint created in Storyboard.'
s.description = <<-DESC
A simple way to use programmatically Autolayout Constraint created in Storyboard.
- Predefined basic constraints: top, bottom, leading, trailing, height, width, centerX, centerY
- A complete method to find a specific constraint through the views
DESC
s.homepage = 'https://github.com/dimix/StoryboardConstraint'
s.screenshots = 'https://raw.githubusercontent.com/dimix/StoryboardConstraint/master/readme-images/demo.gif'
s.license = "MIT"
s.author = { 'Dimitri Giani' => '[email protected]' }
s.platform = :ios, "9.0"
s.source = { :git => 'https://github.com/dimix/StoryboardConstraint.git', :tag => "#{s.version}" }
s.source_files = "Classes", "StoryboardConstraint/*.{swift}"
end