Skip to content

Commit d9e4716

Browse files
committed
Add Alamofire and ObjectMapper as subprojects
* Allows use of carthage --no-build
1 parent 0afe7a2 commit d9e4716

File tree

2 files changed

+327
-84
lines changed

2 files changed

+327
-84
lines changed

.gitignore

+70-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,45 @@
1+
2+
# Created by https://www.gitignore.io/api/osx,swift
3+
4+
### OSX ###
5+
*.DS_Store
6+
.AppleDouble
7+
.LSOverride
8+
9+
# Icon must end with two \r
10+
Icon
11+
12+
13+
# Thumbnails
14+
._*
15+
16+
# Files that might appear in the root of a volume
17+
.DocumentRevisions-V100
18+
.fseventsd
19+
.Spotlight-V100
20+
.TemporaryItems
21+
.Trashes
22+
.VolumeIcon.icns
23+
.com.apple.timemachine.donotpresent
24+
25+
# Directories potentially created on remote AFP share
26+
.AppleDB
27+
.AppleDesktop
28+
Network Trash Folder
29+
Temporary Items
30+
.apdisk
31+
32+
33+
### Swift ###
134
# Xcode
235
#
36+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
37+
38+
## Build generated
339
build/
40+
DerivedData/
41+
42+
## Various settings
443
*.pbxuser
544
!default.pbxuser
645
*.mode1v3
@@ -9,20 +48,33 @@ build/
948
!default.mode2v3
1049
*.perspectivev3
1150
!default.perspectivev3
12-
xcuserdata
13-
*.xccheckout
14-
*.xcscmblueprint
51+
xcuserdata/
52+
53+
## Other
1554
*.moved-aside
16-
DerivedData
55+
*.xcuserstate
56+
57+
## Obj-C/Swift specific
1758
*.hmap
1859
*.ipa
19-
*.xcuserstate
60+
*.dSYM.zip
61+
*.dSYM
62+
63+
## Playgrounds
64+
timeline.xctimeline
65+
playground.xcworkspace
66+
67+
# Swift Package Manager
68+
#
69+
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
70+
# Packages/
71+
.build/
2072

2173
# CocoaPods
2274
#
2375
# We recommend against adding the Pods directory to your .gitignore. However
2476
# you should judge for yourself, the pros and cons are mentioned at:
25-
# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control
77+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
2678
#
2779
# Pods/
2880

@@ -32,3 +84,15 @@ DerivedData
3284
# Carthage/Checkouts
3385

3486
Carthage/Build
87+
88+
# fastlane
89+
#
90+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
91+
# screenshots whenever they are needed.
92+
# For more information about the recommended setup visit:
93+
# https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md
94+
95+
fastlane/report.xml
96+
fastlane/Preview.html
97+
fastlane/screenshots
98+
fastlane/test_output

0 commit comments

Comments
 (0)