This repository was archived by the owner on Feb 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWeavy.podspec
More file actions
33 lines (28 loc) · 1.43 KB
/
Weavy.podspec
File metadata and controls
33 lines (28 loc) · 1.43 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
28
29
30
31
32
33
Pod::Spec.new do |s|
s.name = "Weavy"
s.version = "1.1.0"
s.summary = "Weavy is a navigation framework for iOS applications based on a weaving pattern."
s.description = <<-DESC
Weavy aims to
* Promote the cutting of storyboards into atomic units to enable collaboration and reusability of UIViewControllers
* Allow the presentation of a UIViewController in different ways according to the navigation context
* Ease the implementation of dependency injection
* Remove any navigation mechanism from UIViewControllers
* Promote reactive programing
* Express the navigation in a declarative way while addressing the majority of the navigation cases
* Facilitate the cutting of an application into logical blocks of navigation
DESC
s.homepage = "https://github.com/twittemb/Weavy"
s.screenshots = "https://raw.githubusercontent.com/twittemb/Weavy/develop/Resources/weavy_logo.png"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Thibault Wittemberg" => "thibault.wittemberg@gmail.com" }
s.social_media_url = "http://twitter.com/thwittem"
s.platform = :ios
s.ios.deployment_target = "9.3"
s.source = { :git => "https://github.com/twittemb/Weavy.git", :tag => s.version.to_s }
s.source_files = "Weavy/**/*.swift"
s.frameworks = 'UIKit'
s.requires_arc = true
s.dependency 'RxSwift', '>= 4.0.0'
s.dependency 'RxCocoa', '>= 4.0.0'
end