Skip to content

Commit 8ea0db9

Browse files
authored
Initial commit
0 parents  commit 8ea0db9

File tree

2 files changed

+70
-0
lines changed

2 files changed

+70
-0
lines changed

.gitignore

+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
# Xcode
2+
#
3+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
4+
5+
## User settings
6+
xcuserdata/
7+
8+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
9+
*.xcscmblueprint
10+
*.xccheckout
11+
12+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
13+
build/
14+
DerivedData/
15+
*.moved-aside
16+
*.pbxuser
17+
!default.pbxuser
18+
*.mode1v3
19+
!default.mode1v3
20+
*.mode2v3
21+
!default.mode2v3
22+
*.perspectivev3
23+
!default.perspectivev3
24+
25+
## Obj-C/Swift specific
26+
*.hmap
27+
28+
## App packaging
29+
*.ipa
30+
*.dSYM.zip
31+
*.dSYM
32+
33+
# CocoaPods
34+
#
35+
# We recommend against adding the Pods directory to your .gitignore. However
36+
# you should judge for yourself, the pros and cons are mentioned at:
37+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
38+
#
39+
# Pods/
40+
#
41+
# Add this line if you want to avoid checking in source code from the Xcode workspace
42+
# *.xcworkspace
43+
44+
# Carthage
45+
#
46+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
47+
# Carthage/Checkouts
48+
49+
Carthage/Build/
50+
51+
# fastlane
52+
#
53+
# It is recommended to not store the screenshots in the git repo.
54+
# Instead, use fastlane to re-generate the screenshots whenever they are needed.
55+
# For more information about the recommended setup visit:
56+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
57+
58+
fastlane/report.xml
59+
fastlane/Preview.html
60+
fastlane/screenshots/**/*.png
61+
fastlane/test_output
62+
63+
# Code Injection
64+
#
65+
# After new code Injection tools there's a generated folder /iOSInjectionProject
66+
# https://github.com/johnno1962/injectionforxcode
67+
68+
iOSInjectionProject/

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Sparkle-Binary
2+
Copy of Sparkle for Ranchero apps

0 commit comments

Comments
 (0)