-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJustLayout.podspec
More file actions
30 lines (24 loc) · 1002 Bytes
/
JustLayout.podspec
File metadata and controls
30 lines (24 loc) · 1002 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Pod::Spec.new do |s|
s.name = 'JustLayout'
s.module_name = 'JustLayout'
s.version = "1.6.1"
s.summary = "An elegant Auto Layout sugar for iOS"
s.description = "JustLayout is an elegant Auto Layout sugar for iOS."
s.homepage = "https://github.com/Meniny/JustLayout"
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.authors = { 'Elias Abel' => 'admin@meniny.cn' }
s.social_media_url = 'https://meniny.cn/'
s.source = { :git => "https://github.com/Meniny/JustLayout.git", :tag => s.version.to_s }
s.requires_arc = true
s.swift_version = '5'
s.ios.deployment_target = "8"
s.tvos.deployment_target = "10.2"
s.default_subspecs = 'Core'
s.subspec 'Core' do |ss|
ss.source_files = 'JustLayout/Core/**/*.swift', 'JustLayout/JustLayout.h'
end
s.subspec 'DSL' do |ss|
ss.dependency 'JustLayout/Core'
ss.source_files = 'JustLayout/DSL/**/*.swift'
end
end