Skip to content

Commit a18a1c7

Browse files
committed
Merge branch 'release/0.1'
2 parents 1003ddd + 28d516e commit a18a1c7

File tree

178 files changed

+75470
-523
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

178 files changed

+75470
-523
lines changed

.gitignore

Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
2+
# Created by https://www.gitignore.io/api/macos,xcode,cocoapods,sublimetext
3+
4+
### CocoaPods ###
5+
## CocoaPods GitIgnore Template
6+
7+
# CocoaPods - Only use to conserve bandwidth / Save time on Pushing
8+
# - Also handy if you have a large number of dependant pods
9+
# - AS PER https://guides.cocoapods.org/using/using-cocoapods.html NEVER IGNORE THE LOCK FILE
10+
Pods/
11+
12+
### macOS ###
13+
*.DS_Store
14+
.AppleDouble
15+
.LSOverride
16+
17+
# Icon must end with two \r
18+
Icon
19+
20+
# Thumbnails
21+
._*
22+
23+
# Files that might appear in the root of a volume
24+
.DocumentRevisions-V100
25+
.fseventsd
26+
.Spotlight-V100
27+
.TemporaryItems
28+
.Trashes
29+
.VolumeIcon.icns
30+
.com.apple.timemachine.donotpresent
31+
32+
# Directories potentially created on remote AFP share
33+
.AppleDB
34+
.AppleDesktop
35+
Network Trash Folder
36+
Temporary Items
37+
.apdisk
38+
39+
### SublimeText ###
40+
# cache files for sublime text
41+
*.tmlanguage.cache
42+
*.tmPreferences.cache
43+
*.stTheme.cache
44+
45+
# workspace files are user-specific
46+
*.sublime-workspace
47+
48+
# project files should be checked into the repository, unless a significant
49+
# proportion of contributors will probably not be using SublimeText
50+
# *.sublime-project
51+
52+
# sftp configuration file
53+
sftp-config.json
54+
55+
# Package control specific files
56+
Package Control.last-run
57+
Package Control.ca-list
58+
Package Control.ca-bundle
59+
Package Control.system-ca-bundle
60+
Package Control.cache/
61+
Package Control.ca-certs/
62+
Package Control.merged-ca-bundle
63+
Package Control.user-ca-bundle
64+
oscrypto-ca-bundle.crt
65+
bh_unicode_properties.cache
66+
67+
# Sublime-github package stores a github token in this file
68+
# https://packagecontrol.io/packages/sublime-github
69+
GitHub.sublime-settings
70+
71+
### Xcode ###
72+
# Xcode
73+
#
74+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
75+
76+
## Build generated
77+
build/
78+
DerivedData/
79+
80+
## Various settings
81+
*.pbxuser
82+
!default.pbxuser
83+
*.mode1v3
84+
!default.mode1v3
85+
*.mode2v3
86+
!default.mode2v3
87+
*.perspectivev3
88+
!default.perspectivev3
89+
xcuserdata/
90+
91+
## Other
92+
*.moved-aside
93+
*.xccheckout
94+
*.xcscmblueprint
95+
96+
### Xcode Patch ###
97+
*.xcodeproj/*
98+
!*.xcodeproj/project.pbxproj
99+
!*.xcodeproj/xcshareddata/
100+
!*.xcworkspace/contents.xcworkspacedata
101+
/*.gcno
102+
103+
# End of https://www.gitignore.io/api/macos,xcode,cocoapods,sublimetext

0 commit comments

Comments
 (0)