Skip to content

Commit b1bcd6a

Browse files
committed
Add Fastlane
1 parent 74b3da4 commit b1bcd6a

File tree

19 files changed

+487
-418
lines changed

19 files changed

+487
-418
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 33 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 20 deletions
This file was deleted.

.gitignore

Lines changed: 91 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
1-
# Secret Keys
2-
Secrets.xcconfig
1+
## CUSTOM
32

4-
# Created by https://www.toptal.com/developers/gitignore/api/swift,xcode,macos
5-
# Edit at https://www.toptal.com/developers/gitignore?templates=swift,xcode,macos
3+
Secrets.xcconfig
4+
*.p8
5+
fastlane/Credentials.json
6+
build/
7+
swiftlint/build_phases/
8+
SourcePackages/
69

710
### macOS ###
811
# General
@@ -13,7 +16,6 @@ Secrets.xcconfig
1316
# Icon must end with two \r
1417
Icon
1518

16-
1719
# Thumbnails
1820
._*
1921

@@ -134,4 +136,87 @@ iOSInjectionProject/
134136
/*.gcno
135137
**/xcshareddata/WorkspaceSettings.xcsettings
136138

137-
# End of https://www.toptal.com/developers/gitignore/api/swift,xcode,macos
139+
# Fastlane
140+
141+
*.gem
142+
*.rbc
143+
/.config
144+
coverage/
145+
/InstalledFiles
146+
/pkg/
147+
/spec/reports/
148+
/test/tmp/
149+
/test/version_tmp/
150+
/tmp/
151+
rspec_logs.json
152+
test_output/
153+
.DS_STORE
154+
.DS_Store
155+
.keys
156+
*.swp
157+
158+
## Specific to Android
159+
.gradle/
160+
*.iml
161+
local.properties
162+
163+
## Specific to screengrab
164+
/screengrab/example/fastlane/metadata/
165+
/screengrab/target/
166+
167+
## Specific to RubyMotion:
168+
.dat*
169+
.repl_history
170+
build/
171+
172+
## Documentation cache and generated files:
173+
/.yardoc/
174+
/_yardoc/
175+
/doc/
176+
/rdoc/
177+
178+
## Environment normalisation:
179+
/.bundle/
180+
/lib/bundler/man/
181+
182+
# for a library or gem, you might want to ignore these files since the code is
183+
# intended to run in multiple environments; otherwise, check them in:
184+
# Gemfile.lock
185+
.ruby-version
186+
.ruby-gemset
187+
188+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
189+
.rvmrc
190+
191+
# fastlane specific
192+
/*.itmsp
193+
.idea
194+
.rakeTasks
195+
spec/fixtures/*.itmsp/*.png
196+
/integration
197+
**/report.xml
198+
**/.bundle
199+
fastlane/lib/fastlane/plugins/template/.rubocop.yml
200+
snapshot/example/fastlane/README.md
201+
snapshot/example/fastlane/screenshots
202+
fastlane/FastlaneRunner
203+
fastlane/swift/FastlaneRunner
204+
vendor
205+
206+
# iOS specific ignores, used in sample projects inside the repo
207+
DerivedData
208+
*.pbxuser
209+
!default.pbxuser
210+
*.mode1v3
211+
!default.mode1v3
212+
*.mode2v3
213+
!default.mode2v3
214+
*.perspectivev3
215+
!default.perspectivev3
216+
xcuserdata/
217+
*.moved-aside
218+
*.xccheckout
219+
*.xcscmblueprint
220+
221+
# Dotenv
222+
.env

0 commit comments

Comments
 (0)