-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathRxComposableArchitecture.podspec
37 lines (32 loc) · 1.62 KB
/
RxComposableArchitecture.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
32
33
34
35
36
37
#
# Be sure to run `pod lib lint RxComposableArchitecture.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 = 'RxComposableArchitecture'
s.version = '0.17.0'
s.summary = 'The Composable Architecture (TCA, for short) is a library for building applications in a consistent and understandable way, with composition, testing, and ergonomics in mind.'
s.description = <<-DESC
The Composable Architecture (TCA, for short) is a library for building applications in a consistent and understandable way, with composition, testing, and ergonomics in mind.
This library is based on PointFree's Swift Composable Architecture.
DESC
s.homepage = 'https://github.com/tokopedia/RxComposableArchitecture'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'tokopedia' => '[email protected]' }
s.source = { :git => 'https://github.com/tokopedia/RxComposableArchitecture.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/tokopedia'
s.ios.deployment_target = '13.0'
s.source_files = [
'Sources/RxComposableArchitecture/**/*',
]
s.dependency 'RxSwift', '5.1.1'
s.dependency 'RxCocoa', '5.1.1'
s.dependency 'CasePaths'
s.dependency 'XCTestDynamicOverlay'
s.dependency 'CustomDump'
s.dependency 'Dependencies'
end