-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathFlowKit.podspec
More file actions
27 lines (22 loc) · 853 Bytes
/
FlowKit.podspec
File metadata and controls
27 lines (22 loc) · 853 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
Pod::Spec.new do |s|
s.name = "FlowKit"
s.version = "0.2.0"
s.summary = "Screenflow management for iOS Edit"
s.description = <<-DESC
Define screen flows easily with FlowKit.
Elegant syntax, clear separation of concerns and testability makes it
a perfect add-on for your current MV* setup.
DESC
s.homepage = "http://github.com/FilipZawada/FlowKit"
s.license = { :type => "MIT", :file => "./LICENSE" }
s.author = { "Filip Zawada" => "" }
s.social_media_url = "https://twitter.com/Filip_Zawada"
s.source = {
:git => "http://github.com/FilipZawada/FlowKit.git",
:tag => s.version
}
s.ios.deployment_target = '8.0'
s.frameworks = 'UIKit'
s.source_files = "FlowKit/*.swift"
s.requires_arc = true
end