-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathORStackView.podspec
More file actions
23 lines (19 loc) · 852 Bytes
/
ORStackView.podspec
File metadata and controls
23 lines (19 loc) · 852 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "ORStackView"
s.version = "3.0.0"
s.summary = "An Auto Layout based Stack View."
s.description = <<-DESC
Vertically stack views using Auto Layout, also includes an
order specific subclass that uses view tags for ordering.
DESC
s.homepage = "https://github.com/orta/ORStackView"
s.license = 'MIT'
s.author = { "Orta Therox" => "[email protected]" }
s.social_media_url = "http://twitter.com/orta"
s.source = { :git => "https://github.com/orta/ORStackView.git", :tag => s.version.to_s }
s.platform = :ios, '6.0'
s.requires_arc = true
s.source_files = 'Classes/ios/*', 'Classes/ios/private/*'
s.private_header_files = 'Classes/ios/private/*.h'
s.dependency 'FLKAutoLayout', '~> 0.2'
end