Skip to content

Commit 9c29b04

Browse files
committed
Add support for creating a test session sparodev#1
1 parent fe899c0 commit 9c29b04

23 files changed

+2171
-54
lines changed

.gitignore

+105
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
# OS X Finder
2+
.DS_Store
3+
/Wing/.DS_Store
4+
5+
# Xcode
6+
#
7+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
8+
9+
## Build generated
10+
build/
11+
DerivedData/
12+
13+
## Various settings
14+
*.pbxuser
15+
!default.pbxuser
16+
*.mode1v3
17+
!default.mode1v3
18+
*.mode2v3
19+
!default.mode2v3
20+
*.perspectivev3
21+
!default.perspectivev3
22+
xcuserdata/
23+
24+
## Other
25+
*.moved-aside
26+
*.xccheckout
27+
*.xcscmblueprint
28+
29+
## Obj-C/Swift specific
30+
*.hmap
31+
*.ipa
32+
*.dSYM.zip
33+
*.dSYM
34+
35+
## Playgrounds
36+
timeline.xctimeline
37+
playground.xcworkspace
38+
39+
# Swift Package Manager
40+
#
41+
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
42+
# Packages/
43+
# Package.pins
44+
# Package.resolved
45+
.build/
46+
47+
# CocoaPods
48+
#
49+
# We recommend against adding the Pods directory to your .gitignore. However
50+
# you should judge for yourself, the pros and cons are mentioned at:
51+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
52+
#
53+
# Pods/
54+
55+
# Carthage
56+
#
57+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
58+
# Carthage/Checkouts
59+
60+
Carthage/Build
61+
62+
# fastlane
63+
#
64+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
65+
# screenshots whenever they are needed.
66+
# For more information about the recommended setup visit:
67+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
68+
69+
fastlane/report.xml
70+
fastlane/Preview.html
71+
fastlane/screenshots
72+
fastlane/test_output
73+
74+
# Xcode per-user config
75+
*.mode1
76+
*.mode1v3
77+
*.mode2v3
78+
*.perspective
79+
*.perspectivev3
80+
*.pbxuser
81+
xcshareddata
82+
xcuserdata
83+
*.xccheckout
84+
*.xcuserdatad
85+
86+
# Build products
87+
build/
88+
*.o
89+
*.LinkFileList
90+
*.hmap
91+
DerivedData
92+
93+
# Automatic backup files
94+
*~.nib/
95+
*.swp
96+
*~
97+
*.dat
98+
*.dep
99+
100+
# Builds
101+
*.dSYM.zip
102+
*.ipa
103+
104+
# Cocoapods
105+
Pods

Podfile

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Uncomment the next line to define a global platform for your project
2+
# platform :ios, '9.0'
3+
4+
target 'WingKit' do
5+
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
6+
use_frameworks!
7+
8+
# Pods for WingKit
9+
pod 'AWSCore'
10+
pod 'AWSS3'
11+
pod 'AWSCognito'
12+
pod 'AWSCognitoIdentityProvider'
13+
14+
target 'WingKitTests' do
15+
inherit! :search_paths
16+
# Pods for testing
17+
end
18+
19+
end

Podfile.lock

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
PODS:
2+
- AWSCognito (2.6.1):
3+
- AWSCore (= 2.6.1)
4+
- AWSCognitoIdentityProvider (2.6.1):
5+
- AWSCore (= 2.6.1)
6+
- AWSCore (2.6.1)
7+
- AWSS3 (2.6.1):
8+
- AWSCore (= 2.6.1)
9+
10+
DEPENDENCIES:
11+
- AWSCognito
12+
- AWSCognitoIdentityProvider
13+
- AWSCore
14+
- AWSS3
15+
16+
SPEC CHECKSUMS:
17+
AWSCognito: 9aad635e11de0febf026e8a8acbbd345b2016801
18+
AWSCognitoIdentityProvider: a335678a0024fa2b44213bc4e86b46b21773e567
19+
AWSCore: e7d37fa0715def975acf1b0d75556576780088b8
20+
AWSS3: 2e18ede28199a5530955dc1a65434da43dcc4d2c
21+
22+
PODFILE CHECKSUM: c613f50bf91b8944df444eb843e3f53034dbbe6e
23+
24+
COCOAPODS: 1.2.1

0 commit comments

Comments
 (0)