forked from makeitheady/pcf-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PCFSwift.podspec
78 lines (64 loc) · 2.74 KB
/
PCFSwift.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#
# Be sure to run `pod lib lint PCFSwift.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
# For a tutorial on how to build Podspec for PCF, http://www.dbotha.com/2014/12/04/optional-cocoapod-dependencies/
#
Pod::Spec.new do |s|
s.name = "PCFSwift"
s.version = "1.1.0"
s.summary = "An iOS library for easy integration with Prolific eCommerce Framework"
s.description = <<-DESC
This framework provides protocols and structs to support developers with the implementation of an eCommerce app when using the Prolific eCommerce Framework on the server side.
DESC
s.homepage = "https://bitbucket.org/prolificinteractive/pcf-swift"
s.license = 'MIT'
s.author = { "Prolific Interactive" => "[email protected]" }
s.source = { :git => "[email protected]:prolificinteractive/pcf-swift.git", :tag => s.version.to_s }
s.default_subspec = 'Core'
s.ios.deployment_target = '9.0'
s.subspec 'Core' do |core|
core.source_files = 'PCFSwift/Sources/Core/**/*'
end
s.subspec '1Password' do |onepassword|
onepassword.source_files = 'PCFSwift/Sources/1Password/**/*'
onepassword.dependency '1PasswordExtension', '~> 1.8'
onepassword.dependency 'PCFSwift/Core'
end
s.subspec 'AddressGeocoder' do |geocoder|
geocoder.dependency 'AddressGeocoder'
end
s.subspec 'Alamofire' do |alamofire|
alamofire.source_files = 'PCFSwift/Sources/Alamofire/**/*'
alamofire.dependency 'Alamofire', '~> 4.5.1'
alamofire.dependency 'PCFSwift/Core'
end
s.subspec 'EnvironmentSwitcher' do |switcher|
switcher.source_files = 'PCFSwift/Sources/EnvironmentSwitcher/**/*'
switcher.dependency 'PCFSwift/Core'
switcher.dependency 'Yoshi/QAKit', '3.0.0-beta.1'
end
s.subspec 'GenericValidator' do |validator|
validator.dependency 'GenericValidator'
end
s.subspec 'KeychainManager' do |keychainManager|
keychainManager.source_files = 'PCFSwift/Sources/KeychainManager/**/*'
keychainManager.dependency 'PCFSwift/Core'
keychainManager.dependency 'Locksmith', '4.0.0'
end
s.subspec 'KillSwitch' do |killswitch|
killswitch.source_files = 'PCFSwift/Sources/KillSwitch/**/*'
killswitch.dependency 'Siren', '~> 2'
killswitch.dependency 'PCFSwift/Core'
killswitch.dependency 'Bellerophon', '1.0.3'
end
s.subspec 'TouchID' do |touchid|
touchid.source_files = 'PCFSwift/Sources/TouchID/**/*'
end
s.subspec 'Wishlist' do |wishlist|
wishlist.source_files = 'PCFSwift/Sources/Wishlist/**/*'
wishlist.dependency 'PCFSwift/Core'
end
end