-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathEEStackLayout.podspec
More file actions
19 lines (15 loc) · 847 Bytes
/
EEStackLayout.podspec
File metadata and controls
19 lines (15 loc) · 847 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = 'EEStackLayout'
s.version = '0.1.11'
s.summary = 'A structured vertical/horizontal stackview'
s.description = <<-DESC
A structured vertical/horizontal stackview which takes subviews with different widths and adds them to its rows/columns depending on the target orientation with paddings, spacings etc.
DESC
s.homepage = 'https://github.com/efekanegeli/EEStackLayout'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Efekan Egeli' => 'efekanegeli@gmail.com' }
s.source = { :git => 'https://github.com/efekanegeli/EEStackLayout.git', :tag => s.version.to_s }
s.ios.deployment_target = '10.0'
s.swift_version = '4.0'
s.source_files = 'Sources/EEStackLayout/EEStackLayout.swift'
end