forked from intuit/CardParts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
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 = '3.1.4'
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" => "chase_roossin@intuit.com", "Bharath Urs" => "bharath_urs@intuit.com", "Lucien Dupont" => "lucien_dupont@intuit.com", "Badarinath Venkatnarayansetty" => "badarinath_venkatnarayansetty@intuit.com" }
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', '~> 5.0'
s.dependency 'RxCocoa', '~> 5.0'
s.dependency 'RxDataSources', '~> 4.0'
s.dependency 'RxGesture', '~> 3.0'
end