forked from 0xNSHuman/StackFlowView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStackFlowView.podspec
More file actions
27 lines (17 loc) · 1.05 KB
/
StackFlowView.podspec
File metadata and controls
27 lines (17 loc) · 1.05 KB
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
Pod::Spec.new do |s|
s.name = "StackFlowView"
s.version = "1.0.2"
s.summary = "Enforcing stack order for custom UI elements"
s.homepage = "https://github.com/vladaverin24/StackFlowView"
s.screenshots = "https://raw.githubusercontent.com/vladaverin24/StackFlowView/master/Screenshots/two_stacks.gif", "https://github.com/vladaverin24/StackFlowView/raw/master/Screenshots/cards_stack.gif", "https://raw.githubusercontent.com/vladaverin24/StackFlowView/master/Screenshots/stack_of_stacks.gif"
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.author = { "Vlad Averin" => "hello@vladaverin.me" }
s.social_media_url = "http://facebook.com/vaverin"
s.platform = :ios
s.ios.deployment_target = "8.0"
s.source = { :git => "https://github.com/vladaverin24/StackFlowView.git", :tag => "v1.0.2" }
s.source_files = "StackFlowView", "StackFlowView/**/*.swift"
s.frameworks = "UIKit"
s.requires_arc = true
s.pod_target_xcconfig = { 'OTHER_SWIFT_FLAGS[config=Debug]' => '-D DEBUG' }
end