Skip to content

Commit 72c0ab8

Browse files
authored
Merge pull request #6 from Cosmo/development
New API and Swift 5 support
2 parents 15a1d04 + 2143bd0 commit 72c0ab8

23 files changed

+488
-1521
lines changed

.gitignore

+97-13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,53 @@
1-
# Xcode
1+
2+
# Created by https://www.gitignore.io/api/macos,swift,xcode,swiftpm,carthage,cocoapods
3+
# Edit at https://www.gitignore.io/?templates=macos,swift,xcode,swiftpm,carthage,cocoapods
4+
5+
### Carthage ###
6+
# Carthage
27
#
8+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
9+
# Carthage/Checkouts
10+
11+
Carthage/Build
12+
13+
### CocoaPods ###
14+
## CocoaPods GitIgnore Template
15+
16+
# CocoaPods - Only use to conserve bandwidth / Save time on Pushing
17+
# - Also handy if you have a large number of dependant pods
18+
# - AS PER https://guides.cocoapods.org/using/using-cocoapods.html NEVER IGNORE THE LOCK FILE
19+
Pods/
20+
21+
### macOS ###
22+
# General
23+
.DS_Store
24+
.AppleDouble
25+
.LSOverride
26+
27+
# Icon must end with two \r
28+
Icon
29+
30+
# Thumbnails
31+
._*
32+
33+
# Files that might appear in the root of a volume
34+
.DocumentRevisions-V100
35+
.fseventsd
36+
.Spotlight-V100
37+
.TemporaryItems
38+
.Trashes
39+
.VolumeIcon.icns
40+
.com.apple.timemachine.donotpresent
41+
42+
# Directories potentially created on remote AFP share
43+
.AppleDB
44+
.AppleDesktop
45+
Network Trash Folder
46+
Temporary Items
47+
.apdisk
48+
49+
### Swift ###
50+
# Xcode
351
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
452

553
## Build generated
@@ -19,50 +67,86 @@ xcuserdata/
1967

2068
## Other
2169
*.moved-aside
22-
*.xcuserstate
70+
*.xccheckout
71+
*.xcscmblueprint
2372

2473
## Obj-C/Swift specific
2574
*.hmap
2675
*.ipa
2776
*.dSYM.zip
2877
*.dSYM
2978

30-
## macOS specific
31-
.DS_Store
32-
3379
## Playgrounds
3480
timeline.xctimeline
3581
playground.xcworkspace
3682

3783
# Swift Package Manager
38-
#
3984
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
4085
# Packages/
86+
# Package.pins
87+
# Package.resolved
4188
.build/
89+
# Add this line if you want to avoid checking in Xcode SPM integration.
90+
# .swiftpm/xcode
4291

4392
# CocoaPods
44-
#
4593
# We recommend against adding the Pods directory to your .gitignore. However
4694
# you should judge for yourself, the pros and cons are mentioned at:
4795
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
48-
#
4996
# Pods/
97+
# Add this line if you want to avoid checking in source code from the Xcode workspace
98+
# *.xcworkspace
5099

51100
# Carthage
52-
#
53101
# Add this line if you want to avoid checking in source code from Carthage dependencies.
54102
# Carthage/Checkouts
55103

56-
Carthage/Build
104+
105+
# Accio dependency management
106+
Dependencies/
107+
.accio/
57108

58109
# fastlane
59-
#
60110
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
61111
# screenshots whenever they are needed.
62112
# For more information about the recommended setup visit:
63-
# https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md
113+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
64114

65115
fastlane/report.xml
66116
fastlane/Preview.html
67-
fastlane/screenshots
117+
fastlane/screenshots/**/*.png
68118
fastlane/test_output
119+
120+
# Code Injection
121+
# After new code Injection tools there's a generated folder /iOSInjectionProject
122+
# https://github.com/johnno1962/injectionforxcode
123+
124+
iOSInjectionProject/
125+
126+
### SwiftPM ###
127+
Packages
128+
xcuserdata
129+
*.xcodeproj
130+
131+
132+
### Xcode ###
133+
# Xcode
134+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
135+
136+
## User settings
137+
138+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
139+
140+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
141+
142+
## Xcode Patch
143+
*.xcodeproj/*
144+
!*.xcodeproj/project.pbxproj
145+
!*.xcodeproj/xcshareddata/
146+
!*.xcworkspace/contents.xcworkspacedata
147+
/*.gcno
148+
149+
### Xcode Patch ###
150+
**/xcshareddata/WorkspaceSettings.xcsettings
151+
152+
# End of https://www.gitignore.io/api/macos,swift,xcode,swiftpm,carthage,cocoapods

BinaryKit-iOSTests/BinaryKit_iOSTests.swift

-117
This file was deleted.

BinaryKit-iOSTests/Info.plist

-22
This file was deleted.

BinaryKit.xcodeproj/BinaryKit.xcworkspace/contents.xcworkspacedata

-7
This file was deleted.

0 commit comments

Comments
 (0)