Skip to content

Commit a0957e2

Browse files
committed
Added .gitignore
1 parent 1a30e22 commit a0957e2

File tree

4 files changed

+99
-23
lines changed

4 files changed

+99
-23
lines changed

.gitignore

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# Xcode
2+
#
3+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
4+
5+
## Build generated
6+
build/
7+
DerivedData/
8+
9+
## Various settings
10+
*.pbxuser
11+
!default.pbxuser
12+
*.mode1v3
13+
!default.mode1v3
14+
*.mode2v3
15+
!default.mode2v3
16+
*.perspectivev3
17+
!default.perspectivev3
18+
xcuserdata/
19+
20+
## Other
21+
*.moved-aside
22+
*.xccheckout
23+
*.xcscmblueprint
24+
25+
## Obj-C/Swift specific
26+
*.hmap
27+
*.ipa
28+
29+
# CocoaPods
30+
#
31+
# We recommend against adding the Pods directory to your .gitignore. However
32+
# you should judge for yourself, the pros and cons are mentioned at:
33+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
34+
#
35+
# Pods/
36+
37+
# Carthage
38+
#
39+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
40+
# Carthage/Checkouts
41+
42+
Carthage/Build
43+
44+
# fastlane
45+
#
46+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
47+
# screenshots whenever they are needed.
48+
# For more information about the recommended setup visit:
49+
# https://github.com/fastlane/fastlane/blob/master/docs/Gitignore.md
50+
51+
fastlane/report.xml
52+
fastlane/screenshots

Cluster.xcodeproj/project.pbxproj

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -316,6 +316,27 @@
316316
name = Helpers;
317317
sourceTree = "<group>";
318318
};
319+
9DEFE5D71C73E5F5005B3B1A /* Views */ = {
320+
isa = PBXGroup;
321+
children = (
322+
);
323+
name = Views;
324+
sourceTree = "<group>";
325+
};
326+
9DEFE5D81C73E5FB005B3B1A /* Controllers */ = {
327+
isa = PBXGroup;
328+
children = (
329+
);
330+
name = Controllers;
331+
sourceTree = "<group>";
332+
};
333+
9DEFE5D91C73E601005B3B1A /* Models */ = {
334+
isa = PBXGroup;
335+
children = (
336+
);
337+
name = Models;
338+
sourceTree = "<group>";
339+
};
319340
B7F7862424CD11C144F1CC5E /* Frameworks */ = {
320341
isa = PBXGroup;
321342
children = (
@@ -380,6 +401,9 @@
380401
CEA8EA0E1B854B2100DC2AA5 /* Cluster */ = {
381402
isa = PBXGroup;
382403
children = (
404+
9DEFE5D91C73E601005B3B1A /* Models */,
405+
9DEFE5D81C73E5FB005B3B1A /* Controllers */,
406+
9DEFE5D71C73E5F5005B3B1A /* Views */,
383407
CEA8EA111B854B2100DC2AA5 /* AppDelegate.swift */,
384408
CEC88F161BB45C10009BE41C /* MenuController.swift */,
385409
CE14D6541BD809A100FC06F4 /* CAPSPageMenu.swift */,
Binary file not shown.

0 commit comments

Comments
 (0)