-
Notifications
You must be signed in to change notification settings - Fork 0
/
SizeClassAwareness.podspec
20 lines (16 loc) · 1.17 KB
/
SizeClassAwareness.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = 'SizeClassAwareness'
s.version = '0.1.0'
s.summary = 'UIViewController extension, which adds the ability to set constraints based on the TraitCollection..'
s.description = <<-DESC
Including this pod extends UIViewControllers with functions to set constraints for any combination of compact, regular or undefined SizeClasses for vertical and horizontal orientation. The correct constraints can then be activated with a simple call when transitioning to another TraitCollection.
DESC
s.homepage = 'https://github.com/Lutzifer/SizeClassAwareness'
s.screenshots = 'https://github.com/Lutzifer/SizeClassAwareness/raw/dev/Portrait.png', 'https://github.com/Lutzifer/SizeClassAwareness/raw/dev/Landscape.png'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Wolfgang Lutz' => '[email protected]' }
s.source = { :git => 'https://github.com/Lutzifer/SizeClassAwareness.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/WLBORg'
s.ios.deployment_target = '9.0'
s.source_files = 'SizeClassAwareness/Classes/**/*'
end