This repository has been archived by the owner on May 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SwiftyFlow.podspec
31 lines (25 loc) · 1.62 KB
/
SwiftyFlow.podspec
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
28
29
30
31
#
# Be sure to run `pod lib lint SwiftyFlow.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'SwiftyFlow'
s.version = '0.7.1'
s.summary = 'SwiftyFlow is a navigation manager that let you create your flow using a declarative format, being able to unit test the hole flow.'
s.description = <<-DESC
It's the first library that allow you control your navigation as "flows", you can use both .NIB or Storyboard, you can declare the expected flow that you want to have and in a simple way create.
Beside all the possibilities the biggest advantage is the possibility to test your flow, your can unit test your flows and make sure that you did not break any of your flows / navigation, you will be able to continue upgrade and change your navigation and maintain a clear control in order to make sure you did not broke anything.
DESC
s.homepage = 'https://github.com/felipeflorencio/SwiftyFlow'
s.documentation_url = 'https://felipeflorencio.github.io/SwiftyFlow/'
s.license = { :type => 'GPL-3.0', :file => 'LICENSE' }
s.author = { 'Felipe F Garcia' => '[email protected]' }
s.source = { :git => 'https://github.com/felipeflorencio/SwiftyFlow.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/dr_nerd'
s.ios.deployment_target = '10.0'
s.swift_version = '4.2'
s.source_files = 'SwiftyFlow/Classes/**/*'
end