Skip to content
This repository was archived by the owner on Aug 18, 2023. It is now read-only.

Commit 40b245e

Browse files
authored
Merge pull request #7 from mikaelacaron/test
Secrets
2 parents b58c83d + c50a740 commit 40b245e

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
# Created by https://www.toptal.com/developers/gitignore/api/macos,xcode,swift
33
# Edit at https://www.toptal.com/developers/gitignore?templates=macos,xcode,swift
44

5+
# Ignore secrets
6+
Secrets.swift
7+
58
### macOS ###
69
# General
710
.DS_Store
@@ -84,7 +87,7 @@ playground.xcworkspace
8487
# We recommend against adding the Pods directory to your .gitignore. However
8588
# you should judge for yourself, the pros and cons are mentioned at:
8689
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
87-
# Pods/
90+
Pods/
8891
# Add this line if you want to avoid checking in source code from the Xcode workspace
8992
# *.xcworkspace
9093

brain-marks.xcodeproj/project.pbxproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
FFEBBB4126223F7E000F475F /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = FFEBBB4026223F7E000F475F /* Preview Assets.xcassets */; };
1414
FFEBBB4C26223F7F000F475F /* brain_marksTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = FFEBBB4B26223F7F000F475F /* brain_marksTests.swift */; };
1515
FFEBBB5726223F7F000F475F /* brain_marksUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = FFEBBB5626223F7F000F475F /* brain_marksUITests.swift */; };
16+
FFEBBB7626226A39000F475F /* Secrets.swift in Sources */ = {isa = PBXBuildFile; fileRef = FFEBBB7526226A39000F475F /* Secrets.swift */; };
1617
/* End PBXBuildFile section */
1718

1819
/* Begin PBXContainerItemProxy section */
@@ -45,6 +46,7 @@
4546
FFEBBB5226223F7F000F475F /* brain-marksUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "brain-marksUITests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
4647
FFEBBB5626223F7F000F475F /* brain_marksUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = brain_marksUITests.swift; sourceTree = "<group>"; };
4748
FFEBBB5826223F7F000F475F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
49+
FFEBBB7526226A39000F475F /* Secrets.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Secrets.swift; sourceTree = "<group>"; };
4850
/* End PBXFileReference section */
4951

5052
/* Begin PBXFrameworksBuildPhase section */
@@ -100,6 +102,7 @@
100102
FFEBBB3D26223F7E000F475F /* Assets.xcassets */,
101103
FFEBBB4226223F7E000F475F /* Info.plist */,
102104
FFEBBB3F26223F7E000F475F /* Preview Content */,
105+
FFEBBB7526226A39000F475F /* Secrets.swift */,
103106
);
104107
path = "brain-marks";
105108
sourceTree = "<group>";
@@ -260,6 +263,7 @@
260263
buildActionMask = 2147483647;
261264
files = (
262265
FFEBBB3C26223F75000F475F /* ContentView.swift in Sources */,
266+
FFEBBB7626226A39000F475F /* Secrets.swift in Sources */,
263267
FFEBBB3A26223F75000F475F /* brain_marksApp.swift in Sources */,
264268
);
265269
runOnlyForDeploymentPostprocessing = 0;

0 commit comments

Comments
 (0)