-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathNorthLayout.podspec
More file actions
21 lines (21 loc) · 878 Bytes
/
NorthLayout.podspec
File metadata and controls
21 lines (21 loc) · 878 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "NorthLayout"
s.version = "5.2.0"
s.summary = "Autolayout Visual Format Helper"
s.description = <<-DESC
fast path to autolayout using the Visual Format like `autolayout("H:|-[label]-|")`
DESC
s.homepage = "https://github.com/banjun/NorthLayout"
s.license = 'MIT'
s.author = { "banjun" => "banjun@gmail.com" }
s.source = { :git => "https://github.com/banjun/NorthLayout.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/banjun'
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.11'
s.swift_versions = ['5.0']
s.source_files = 'Classes/**/*'
s.ios.frameworks = 'UIKit'
s.osx.frameworks = 'AppKit'
s.requires_arc = true
s.dependency 'FootlessParser', '~> 0.4'
end