Skip to content

Commit 5630964

Browse files
Removed legacy code, Added .gitignore
1 parent fe4dac6 commit 5630964

File tree

2 files changed

+141
-128
lines changed

2 files changed

+141
-128
lines changed

.gitignore

Lines changed: 141 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,141 @@
1+
2+
# Created by https://www.gitignore.io/api/swift,xcode,macos,swiftpm,swiftpackagemanager
3+
# Edit at https://www.gitignore.io/?templates=swift,xcode,macos,swiftpm,swiftpackagemanager
4+
5+
### macOS ###
6+
# General
7+
.DS_Store
8+
.AppleDouble
9+
.LSOverride
10+
11+
# Icon must end with two \r
12+
Icon
13+
14+
# Thumbnails
15+
._*
16+
17+
# Files that might appear in the root of a volume
18+
.DocumentRevisions-V100
19+
.fseventsd
20+
.Spotlight-V100
21+
.TemporaryItems
22+
.Trashes
23+
.VolumeIcon.icns
24+
.com.apple.timemachine.donotpresent
25+
26+
# Directories potentially created on remote AFP share
27+
.AppleDB
28+
.AppleDesktop
29+
Network Trash Folder
30+
Temporary Items
31+
.apdisk
32+
33+
### Swift ###
34+
# Xcode
35+
#
36+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
37+
38+
## Build generated
39+
build/
40+
DerivedData/
41+
42+
## Various settings
43+
*.pbxuser
44+
!default.pbxuser
45+
*.mode1v3
46+
!default.mode1v3
47+
*.mode2v3
48+
!default.mode2v3
49+
*.perspectivev3
50+
!default.perspectivev3
51+
xcuserdata/
52+
53+
## Other
54+
*.moved-aside
55+
*.xccheckout
56+
*.xcscmblueprint
57+
58+
## Obj-C/Swift specific
59+
*.hmap
60+
*.ipa
61+
*.dSYM.zip
62+
*.dSYM
63+
64+
## Playgrounds
65+
timeline.xctimeline
66+
playground.xcworkspace
67+
68+
# Swift Package Manager
69+
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
70+
# Packages/
71+
# Package.pins
72+
# Package.resolved
73+
.build/
74+
# Add this line if you want to avoid checking in Xcode SPM integration.
75+
# .swiftpm/xcode
76+
77+
# CocoaPods
78+
# We recommend against adding the Pods directory to your .gitignore. However
79+
# you should judge for yourself, the pros and cons are mentioned at:
80+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
81+
# Pods/
82+
# Add this line if you want to avoid checking in source code from the Xcode workspace
83+
# *.xcworkspace
84+
85+
# Carthage
86+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
87+
# Carthage/Checkouts
88+
89+
Carthage/Build
90+
91+
# Accio dependency management
92+
Dependencies/
93+
.accio/
94+
95+
# fastlane
96+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
97+
# screenshots whenever they are needed.
98+
# For more information about the recommended setup visit:
99+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
100+
101+
fastlane/report.xml
102+
fastlane/Preview.html
103+
fastlane/screenshots/**/*.png
104+
fastlane/test_output
105+
106+
# Code Injection
107+
# After new code Injection tools there's a generated folder /iOSInjectionProject
108+
# https://github.com/johnno1962/injectionforxcode
109+
110+
iOSInjectionProject/
111+
112+
### SwiftPackageManager ###
113+
Packages
114+
xcuserdata
115+
*.xcodeproj
116+
117+
118+
### SwiftPM ###
119+
120+
121+
### Xcode ###
122+
# Xcode
123+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
124+
125+
## User settings
126+
127+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
128+
129+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
130+
131+
## Xcode Patch
132+
*.xcodeproj/*
133+
!*.xcodeproj/project.pbxproj
134+
!*.xcodeproj/xcshareddata/
135+
!*.xcworkspace/contents.xcworkspacedata
136+
/*.gcno
137+
138+
### Xcode Patch ###
139+
**/xcshareddata/WorkspaceSettings.xcsettings
140+
141+
# End of https://www.gitignore.io/api/swift,xcode,macos,swiftpm,swiftpackagemanager

Custom Classes/MetroManager.swift

Lines changed: 0 additions & 128 deletions
This file was deleted.

0 commit comments

Comments
 (0)