-
Notifications
You must be signed in to change notification settings - Fork 224
/
CardParts.podspec
35 lines (30 loc) · 1.32 KB
/
CardParts.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
#
# Be sure to run `pod lib lint CardParts.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 http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'CardParts'
s.version = '4.0.0'
s.platform = :ios
s.summary = 'iOS Card UI framework.'
s.description = <<-DESC
CardParts is an iOS Card UI framework that uses MVVM and automatic data binding with RxSwift.
DESC
s.homepage = 'https://github.com/intuit/CardParts'
s.authors = { "Chase Roossin" => "[email protected]", "Bharath Urs" => "[email protected]", "Lucien Dupont" => "[email protected]", "Badarinath Venkatnarayansetty" => "[email protected]" }
s.source = { :git => 'https://github.com/intuit/CardParts.git', :tag => s.version.to_s }
s.license = { :type => 'Apache 2.0' }
s.resources = [
'CardParts/Assets/*.xcassets',
]
s.ios.deployment_target = '10.0'
s.swift_version = '5.0'
s.source_files = 'CardParts/src/**/*'
s.dependency 'RxSwift', '~> 6.2'
s.dependency 'RxCocoa', '~> 6.2'
s.dependency 'RxDataSources', '~> 5.0'
s.dependency 'RxGesture', '~> 4.0'
end