-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathFlowter.podspec
More file actions
26 lines (20 loc) · 975 Bytes
/
Flowter.podspec
File metadata and controls
26 lines (20 loc) · 975 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
Pod::Spec.new do |spec|
spec.name = "Flowter"
spec.version = "0.4.1"
spec.summary = "A lightweight and customizable UIViewController flow cordinator"
spec.description = "A lightweight, swifty and customizable UIViewController flow cordinators"
spec.homepage = "https://www.zazcar.com.br"
spec.license = { :type => "Apache License, Version 2.0", :file => "LICENSE" }
spec.author = { "Paulo Cesar Saito" => "paulocsaito@gmail.com" }
spec.platform = :ios, "9.0"
spec.requires_arc = true
spec.source = { :git => "https://github.com/Zazcar/Flowter.git", :tag => "v#{spec.version}" }
spec.source_files = 'Flowter/Source/*.swift'
spec.exclude_files = 'FlowterDemo'
spec.test_spec do |test_spec|
test_spec.dependency 'KIF'
test_spec.requires_app_host = true
test_spec.source_files = 'FlowterTests/*.{h,m,swift}'
test_spec.exclude_files = 'FlowterTests/FlowterDemo*.swift'
end
end