Skip to content

Commit 31eafdf

Browse files
author
Tabber
committed
Add
1 parent 52596d4 commit 31eafdf

File tree

2 files changed

+132
-0
lines changed

2 files changed

+132
-0
lines changed

.gitignore

+111
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,114 @@ DerivedData/
66
.swiftpm/configuration/registries.json
77
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
88
.netrc
9+
10+
# Created by https://www.toptal.com/developers/gitignore/api/swift,swiftpackagemanager,swiftpm,xcode
11+
# Edit at https://www.toptal.com/developers/gitignore?templates=swift,swiftpackagemanager,swiftpm,xcode
12+
13+
### Swift ###
14+
# Xcode
15+
#
16+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
17+
18+
## User settings
19+
xcuserdata/
20+
21+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
22+
*.xcscmblueprint
23+
*.xccheckout
24+
25+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
26+
build/
27+
DerivedData/
28+
*.moved-aside
29+
*.pbxuser
30+
!default.pbxuser
31+
*.mode1v3
32+
!default.mode1v3
33+
*.mode2v3
34+
!default.mode2v3
35+
*.perspectivev3
36+
!default.perspectivev3
37+
38+
## Obj-C/Swift specific
39+
*.hmap
40+
41+
## App packaging
42+
*.ipa
43+
*.dSYM.zip
44+
*.dSYM
45+
46+
## Playgrounds
47+
timeline.xctimeline
48+
playground.xcworkspace
49+
50+
# Swift Package Manager
51+
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
52+
# Packages/
53+
# Package.pins
54+
# Package.resolved
55+
# *.xcodeproj
56+
# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata
57+
# hence it is not needed unless you have added a package configuration file to your project
58+
# .swiftpm
59+
60+
.build/
61+
62+
# CocoaPods
63+
# We recommend against adding the Pods directory to your .gitignore. However
64+
# you should judge for yourself, the pros and cons are mentioned at:
65+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
66+
# Pods/
67+
# Add this line if you want to avoid checking in source code from the Xcode workspace
68+
# *.xcworkspace
69+
70+
# Carthage
71+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
72+
# Carthage/Checkouts
73+
74+
Carthage/Build/
75+
76+
# Accio dependency management
77+
Dependencies/
78+
.accio/
79+
80+
# fastlane
81+
# It is recommended to not store the screenshots in the git repo.
82+
# Instead, use fastlane to re-generate the screenshots whenever they are needed.
83+
# For more information about the recommended setup visit:
84+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
85+
86+
fastlane/report.xml
87+
fastlane/Preview.html
88+
fastlane/screenshots/**/*.png
89+
fastlane/test_output
90+
91+
# Code Injection
92+
# After new code Injection tools there's a generated folder /iOSInjectionProject
93+
# https://github.com/johnno1962/injectionforxcode
94+
95+
iOSInjectionProject/
96+
97+
### SwiftPackageManager ###
98+
Packages
99+
xcuserdata
100+
*.xcodeproj
101+
102+
103+
### SwiftPM ###
104+
105+
106+
### Xcode ###
107+
108+
## Xcode 8 and earlier
109+
110+
### Xcode Patch ###
111+
*.xcodeproj/*
112+
!*.xcodeproj/project.pbxproj
113+
!*.xcodeproj/xcshareddata/
114+
!*.xcodeproj/project.xcworkspace/
115+
!*.xcworkspace/contents.xcworkspacedata
116+
/*.gcno
117+
**/xcshareddata/WorkspaceSettings.xcsettings
118+
119+
# End of https://www.toptal.com/developers/gitignore/api/swift,swiftpackagemanager,swiftpm,xcode

LICENSE.txt

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2024 제제미미
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)