Skip to content

Commit d916b2c

Browse files
author
Diego Marcon
committedMay 11, 2017
Initial commit
0 parents  commit d916b2c

File tree

75 files changed

+2671
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+2671
-0
lines changed
 

‎.gitignore

+75
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
wift
2+
# Xcode
3+
#
4+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
5+
6+
## Build generated
7+
build/
8+
DerivedData
9+
10+
## Various settings
11+
*.pbxuser
12+
!default.pbxuser
13+
*.mode1v3
14+
!default.mode1v3
15+
*.mode2v3
16+
!default.mode2v3
17+
*.perspectivev3
18+
!default.perspectivev3
19+
xcuserdata
20+
21+
## Other
22+
*.xccheckout
23+
*.moved-aside
24+
*.xcuserstate
25+
*.xcscmblueprint
26+
27+
## Obj-C/Swift specific
28+
*.hmap
29+
*.ipa
30+
31+
# CocoaPods
32+
#
33+
# We recommend against adding the Pods directory to your .gitignore. However
34+
# you should judge for yourself, the pros and cons are mentioned at:
35+
# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control
36+
#
37+
# Pods/
38+
39+
# Carthage
40+
#
41+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
42+
# Carthage/Checkouts
43+
44+
Carthage/Build
45+
46+
# ---> Xcode
47+
# Xcode
48+
#
49+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
50+
51+
## Build generated
52+
build/
53+
DerivedData
54+
55+
## Various settings
56+
*.pbxuser
57+
!default.pbxuser
58+
*.mode1v3
59+
!default.mode1v3
60+
*.mode2v3
61+
!default.mode2v3
62+
*.perspectivev3
63+
!default.perspectivev3
64+
xcuserdata
65+
66+
## Other
67+
*.xccheckout
68+
*.moved-aside
69+
*.xcuserstate
70+
71+
# ---> OSX
72+
.DS_Store
73+
.AppleDouble
74+
.LSOverride
75+

‎Adyen.podspec

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
Pod::Spec.new do |s|
2+
s.name = "Adyen"
3+
s.version = "1.1.0"
4+
s.summary = "Adyen SDK for iOS"
5+
s.description = <<-DESC
6+
With Adyen SDK you can dynamically list all relevant payment methods for a specific transaction, so your shoppers can always pay with the method of their choice. The methods are listed based on the shopper's country, the transaction currency and amount.
7+
DESC
8+
s.license = "LICENSE"
9+
s.authors = { "Adyen" => "support@adyen.com" }
10+
s.homepage = "https://adyen.com"
11+
s.requires_arc = true
12+
s.source = { :git => 'https://github.com/Adyen/adyen-ios.git', :tag => "#{s.version}" }
13+
s.platform = :ios
14+
15+
s.dependency 'AdyenCSE', '~> 1.0.4'
16+
17+
s.ios.deployment_target = '9.0'
18+
s.ios.vendored_framework = [ 'Adyen/Adyen.framework' ]
19+
s.ios.frameworks = [ 'Foundation' ]
20+
end

0 commit comments

Comments
 (0)
Please sign in to comment.