-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathZalandoCommerceUI.podspec
49 lines (40 loc) · 1.78 KB
/
ZalandoCommerceUI.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
38
39
40
41
42
43
44
45
46
47
48
49
require_relative './lib/version'
# rubocop:disable Metrics/BlockLength
Pod::Spec.new do |spec|
spec.name = 'ZalandoCommerceUI'
spec.platform = :ios, '9.0'
spec.version = ZC_VERSION
spec.summary = 'Full UI for Zalando Checkout and Catalog APIs.'
spec.homepage = 'https://github.com/zalando-incubator/zalando-commerce-ios'
spec.description = <<-DESC
The purpose of this project is to provide seamless experience of Zalando
articles checkout integration to the 3rd party iOS apps.
Our goal is to allow end developer integrate and run Zalando checkout in
minutes using a few lines of code. ZalandoCommerceUI framework provides
end-to-end solution including UI part for the checkout flow.
If you want to have a full control over the UI and manage checkout flow by
yourself there is a low-level ZalandoCommerceAPI framework that covers all
Checkout API calls and provide you high-level business objects to deal with.
DESC
spec.license = {
type: 'MIT',
file: 'LICENSE'
}
spec.authors = {
'Ahmed Shehata' => '[email protected]',
'Daniel Bauke' => '[email protected]',
'Gleb Galkin' => '[email protected]',
'Haldun Bayhantopcu' => '[email protected]',
'Hani Ibrahim' => '[email protected]'
}
spec.source = {
git: 'https://github.com/zalando-incubator/zalando-commerce-ios.git',
tag: spec.version.to_s
}
spec.source_files = 'Sources/ZalandoCommerceUI/ZalandoCommerceUI/**/*.swift', \
'Sources/Commons/*.swift'
spec.ios.resources = ['Sources/ZalandoCommerceUI/ZalandoCommerceUI/**/*.xcassets',
'Sources/ZalandoCommerceUI/ZalandoCommerceUI/**/Localizable.strings']
spec.ios.frameworks = 'Foundation', 'UIKit'
spec.dependency 'ZalandoCommerceAPI', "= #{spec.version}"
end