Skip to content

Commit

Permalink
Created .gitignore file
Browse files Browse the repository at this point in the history
  • Loading branch information
eleev committed Apr 22, 2018
1 parent 120c322 commit be2fe77
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 0 deletions.
70 changes: 70 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore

.DS_Store
*.DS_Store

## Build generated
build/
DerivedData/

## Various settings
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata/

## Other
*.moved-aside
*.xccheckout
*.xcscmblueprint

## Obj-C/Swift specific
*.hmap
*.ipa
*.dSYM.zip
*.dSYM

## Playgrounds
timeline.xctimeline
playground.xcworkspace

# Swift Package Manager
#
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
# Packages/
# Package.pins
.build/

# CocoaPods
#
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
#
# Pods/

# Carthage
#
# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts

Carthage/Build

# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://docs.fastlane.tools/best-practices/source-control/#source-control

fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/test_output
4 changes: 4 additions & 0 deletions ios-design-patterns.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
A9BCE1E2208CA90B009F0A06 /* ios_design_patternsTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9BCE1E1208CA90B009F0A06 /* ios_design_patternsTests.swift */; };
A9BCE1ED208CA90B009F0A06 /* ios_design_patternsUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9BCE1EC208CA90B009F0A06 /* ios_design_patternsUITests.swift */; };
A9BCE1FC208CA952009F0A06 /* Singleton.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9BCE1FB208CA952009F0A06 /* Singleton.swift */; };
A9BCE1FE208CA9CB009F0A06 /* .gitignore in Resources */ = {isa = PBXBuildFile; fileRef = A9BCE1FD208CA9CB009F0A06 /* .gitignore */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
Expand Down Expand Up @@ -49,6 +50,7 @@
A9BCE1EC208CA90B009F0A06 /* ios_design_patternsUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ios_design_patternsUITests.swift; sourceTree = "<group>"; };
A9BCE1EE208CA90B009F0A06 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
A9BCE1FB208CA952009F0A06 /* Singleton.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Singleton.swift; sourceTree = "<group>"; };
A9BCE1FD208CA9CB009F0A06 /* .gitignore */ = {isa = PBXFileReference; lastKnownFileType = text; path = .gitignore; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
Expand Down Expand Up @@ -79,6 +81,7 @@
A9BCE1C0208CA90A009F0A06 = {
isa = PBXGroup;
children = (
A9BCE1FD208CA9CB009F0A06 /* .gitignore */,
A9BCE1CB208CA90A009F0A06 /* ios-design-patterns */,
A9BCE1E0208CA90B009F0A06 /* ios-design-patternsTests */,
A9BCE1EB208CA90B009F0A06 /* ios-design-patternsUITests */,
Expand Down Expand Up @@ -240,6 +243,7 @@
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
A9BCE1FE208CA9CB009F0A06 /* .gitignore in Resources */,
A9BCE1D7208CA90B009F0A06 /* LaunchScreen.storyboard in Resources */,
A9BCE1D4208CA90B009F0A06 /* Assets.xcassets in Resources */,
A9BCE1D2208CA90A009F0A06 /* Main.storyboard in Resources */,
Expand Down

0 comments on commit be2fe77

Please sign in to comment.