-
Notifications
You must be signed in to change notification settings - Fork 523
/
plugin_scores_cache.yml
13326 lines (13326 loc) · 451 KB
/
plugin_scores_cache.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
fastlane-plugin-versioning:
:initial_commit: 2016-06-03
:age_in_days: 2662
:readme_score: 100
:tests: 80
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: ci_build_number
category: building
description: Detects current build number defined by CI system
details:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: get_app_store_version_number
category:
description: Get the version number of your app in the App Store
details:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: get_build_number_from_plist
category:
description: Get the build number of your project
details: " "
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: get_build_number_from_xcodeproj
category:
description: Get the build number of your project
details: Gets the $(CURRENT_PROJECT_VERSION) build setting using the specified
parameters, or the first if not enough parameters are passed.
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: get_info_plist_path
category:
description: Get the version number of your project
details: This action will return path to Info.plist for specific target in your
project.
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: get_version_number_from_git_branch
category:
description: Extract version number from git branch name
details:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: get_version_number_from_plist
category:
description: Get the version number of your project
details: " "
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: get_version_number_from_xcodeproj
category:
description: Get the version number of your project
details: Gets the $(MARKETING_VERSION) build setting using the specified parameters,
or the first if not enough parameters are passed.
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: increment_build_number_in_plist
category:
description: Increment the build number of your project
details: "\\n"
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: increment_build_number_in_xcodeproj
category:
description: Increment build number in xcodeproj
details:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: increment_version_number_in_plist
category:
description: Increment the version number of your project
details: "\\n"
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: increment_version_number_in_xcodeproj
category:
description: Increment build number in xcodeproj
details:
:sha: f664834a03e144fb5329113a39597d1fcdf9e8a184d827f27f59a6ba5d093259
:github_stars: 483
:github_subscribers: 6
:github_issues: 8
:github_forks: 59
:github_contributors: 0
fastlane-plugin-aws_s3:
:initial_commit: 2016-06-03
:age_in_days: 2114
:readme_score: 100
:tests: 3
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: aws_s3
category:
description: Generates a plist file and uploads all to AWS S3
details:
:sha: 8ee8eb103dbf0b74dc0b5273218db27a270b60b2cf508af937dcc901e7620618
:github_stars: 121
:github_subscribers: 4
:github_issues: 18
:github_forks: 60
:github_contributors: 27
fastlane-plugin-bugsnag:
:initial_commit: 2016-08-23
:age_in_days: 2371
:readme_score: 100
:tests: 0
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: send_build_to_bugsnag
category: building
description: Notifies Bugsnag of a build
details: Notifies Bugsnag of a new build being released including app version
and source control details
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: upload_symbols_to_bugsnag
category:
description: Uploads dSYM debug symbol files to Bugsnag
details: Takes debug symbol (dSYM) files from a macOS, iOS, or tvOS project and
uploads them to Bugsnag to improve stacktrace quality
:sha: 9ef3e0efff2092f540153f3e0adec72f45da2145e136150cc85ea37ce18a16b3
:github_stars: 31
:github_subscribers: 21
:github_issues: 4
:github_forks: 9
:github_contributors: 0
fastlane-plugin-trainer:
:initial_commit: 2016-07-20
:age_in_days: 874
:readme_score: 100
:tests: 8
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: trainer
category:
description: Convert the Xcode plist log to a JUnit report. This will raise an
exception if the tests failed
details:
:sha: 3b608d1425157615556cd146527165ebc763117713256d8d4be2c7dd3b96b819
:github_stars: 132
:github_subscribers: 6
:github_issues: 8
:github_forks: 22
:github_contributors: 7
fastlane-plugin-update_provisioning_profile_specifier:
:initial_commit: 2016-09-26
:age_in_days: 770
:readme_score: 50
:tests: 1
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: update_provisioning_profile_specifier
category:
description: Update the provisioning profile in the Xcode Project file for a specified
target
details:
:sha: 20e3587e337ca216b987612ce7a3edfddd429c4b9b0ff5451105aad6f58eb05b
:github_stars: 20
:github_subscribers: 2
:github_issues: 0
:github_forks: 6
:github_contributors: 0
fastlane-plugin-appicon:
:initial_commit: 2016-07-01
:age_in_days: 1729
:readme_score: 100
:tests: 0
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: android_appicon
category:
description: Generate required icon sizes from a master application icon
details:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: appicon
category:
description: Generate required icon sizes and iconset from a master application
icon
details:
:sha: e5a592f4566a06fcae5c30dad50500293885ae0a954b19189f3fea3c64ddbb8a
:github_stars: 295
:github_subscribers: 9
:github_issues: 19
:github_forks: 41
:github_contributors: 20
fastlane-plugin-badge:
:initial_commit: 2016-12-16
:age_in_days: 1574
:readme_score: 100
:tests: 1
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: add_badge
category:
description: Automatically add a badge to your app icon
details: "\\n"
:sha: 28b352ba20071aa41bf15d8698bfb9bc94fded089c222516aff225a9ed63b675
:github_stars: 175
:github_subscribers: 1
:github_issues: 1
:github_forks: 15
:github_contributors: 2
fastlane-plugin-increment_version_code:
:initial_commit: 2016-07-29
:age_in_days: 576
:readme_score: 50
:tests: 1
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: increment_version_code
category:
description: Increment the version code of your android project.
details:
:sha: b3d0c12875614902ba3dd6ec291ffd2f4ba3889490491cb65e1efc9cc6b4039a
:github_stars: 40
:github_subscribers: 2
:github_issues: 2
:github_forks: 7
:github_contributors: 2
fastlane-plugin-changelog:
:initial_commit: 2016-06-25
:age_in_days: 1735
:readme_score: 100
:tests: 28
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: read_changelog
category:
description: Reads content of a section from your project CHANGELOG.md file
details: Use this action to read content of an arbitrary section from your project
CHANGELOG.md
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: update_changelog
category:
description: Updates content of a section of your project CHANGELOG.md file
details: Use this action to update content of an arbitrary section of your project
CHANGELOG.md
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: emojify_changelog
category:
description: Emojifies the output of read_changelog action
details: This action uses the output of read_changelog action to append an emoji
to known subsections
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: stamp_changelog
category:
description: Stamps the [Unreleased] section with provided identifier in your
project CHANGELOG.md file
details:
:sha: 4e526be75da1b3e89594eeec374a4bea5efe4396adf5414794534f70a746d42a
:github_stars: 176
:github_subscribers: 1
:github_issues: 2
:github_forks: 45
:github_contributors: 10
fastlane-plugin-tpa:
:initial_commit: 2016-06-17
:age_in_days: 1321
:readme_score: 100
:tests: 35
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: upload_to_tpa
category: beta
description: Upload app builds to The Perfect App (tpa.io)
details: " "
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: upload_symbols_to_tpa
category: misc
description: Upload dsym files downloaded from App Store Connect directly to TPA
details: " "
:sha: c7844717d74f92f0ec755f1be929ee579aa952a991e3f8377fc6a5757dc5558e
:github_stars: 9
:github_subscribers: 4
:github_issues: 1
:github_forks: 7
:github_contributors: 0
fastlane-plugin-sentry:
:initial_commit: 2016-06-01
:age_in_days: 2864
:readme_score: 100
:tests: 120
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: sentry_check_cli_installed
category:
description: Checks that sentry-cli with the correct version is installed
details: " "
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: sentry_create_deploy
category:
description: Creates a new release deployment for a project on Sentry
details: " "
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: sentry_create_release
category:
description: Create new releases for a project on Sentry
details: " "
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: sentry_debug_files_upload
category:
description: Upload debugging information files.
details: " "
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: sentry_finalize_release
category:
description: Finalize a release for a project on Sentry
details: " "
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: sentry_set_commits
category:
description: Set commits of a release
details: " "
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: sentry_upload_dif
category:
description: Upload debugging information files.
details: " "
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: sentry_upload_dsym
category:
description: Upload dSYM symbolication files to Sentry
details: " "
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: sentry_upload_file
category:
description: Upload files to a release of a project on Sentry
details: " "
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: sentry_upload_proguard
category:
description: Upload mapping to a project on Sentry
details: " "
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: sentry_upload_sourcemap
category:
description: Upload one or more sourcemap(s) to a release of a project on Sentry
details: " "
:sha: c59da94d53922344633362bd51935bca9af71c74edb0638e4a2d6a2f1cc67759
:github_stars: 131
:github_subscribers: 43
:github_issues: 9
:github_forks: 50
:github_contributors: 0
fastlane-plugin-carthage_cache:
:initial_commit: 2016-06-04
:age_in_days: 631
:readme_score: 100
:tests: 1
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: carthage_cache_install
category:
description: Download Carthage cache from Amazon S3
details:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: carthage_cache_publish
category:
description: Upload Carthage cache to Amazon S3
details:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: carthage_cache_exist
category:
description: Check if Carthage cache exists for Cartfile.resolved in Amazon S3
details:
:sha: d22bc9cb08ea5100972128de7ff45e038c3d485c72f8474d8e103251c0153523
:github_stars: 10
:github_subscribers: 2
:github_issues: 0
:github_forks: 0
:github_contributors: 1
fastlane-plugin-gs_deliver:
:initial_commit: 2017-01-09
:age_in_days: 442
:readme_score: 50
:tests: 1
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: gs_move_to_ready_for_sale
category:
description: Gradoservice plugin to rule apps releases
details: Gradoservice plugin to rule apps releases for our scheme
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: gs_remove_from_testflight_review
category:
description: Gradoservice plugin to rule apps releases
details: Gradoservice plugin to rule apps releases for our scheme
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: gs_get_release_notes
category:
description: Gradoservice plugin to rule apps releases
details: Gradoservice plugin to rule apps releases for our scheme
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: gs_get_app_status
category:
description: Gradoservice plugin to rule apps releases
details: Gradoservice plugin to rule apps releases for our scheme
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: gs_move_rc_to_beta_review
category:
description: Gradoservice plugin to rule apps releases
details: Gradoservice plugin to rule apps releases for our scheme
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: gs_start_external_testing
category:
description: Gradoservice plugin to rule apps releases
details: Gradoservice plugin to rule apps releases for our scheme
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: gs_reject_latest_version
category:
description: Gradoservice plugin to rule apps releases
details: Gradoservice plugin to rule apps releases for our scheme
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: gs_execute_command
category:
description: Gradoservice plugin to rule apps releases
details: Gradoservice plugin to rule apps releases for our scheme
:sha: 48f4d2772c1242c6b065ef3442f91c20e7fa4a98c6f2f73f268047cc6eac029b
:github_stars: 1
:github_subscribers: 1
:github_issues: 0
:github_forks: 0
:github_contributors: 0
fastlane-plugin-automated_test_emulator_run:
:initial_commit: 2016-07-26
:age_in_days: 579
:readme_score: 100
:tests: 1
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: automated_test_emulator_run
category:
description: Starts AVD, based on AVD_setup.json file, before test launch and
kills it after testing is done.
details:
:sha: 95b7bf8b8da01dbc05b7ff0c9e82ef606f90bcbaef75c077838be6fe76655203
:github_stars: 75
:github_subscribers: 3
:github_issues: 5
:github_forks: 17
:github_contributors: 5
fastlane-plugin-aws_device_farm:
:initial_commit: 2016-10-10
:age_in_days: 2417
:readme_score: 100
:tests: 1
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: aws_device_farm
category:
description: Upload the application to the AWS device farm
details: Upload the application to the AWS device farm
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: aws_device_farm_package
category:
description: Packages .app from deriveddata to an aws-compatible ipa
details: Packages .app to .ipa
:sha: f332d181c0d43eac6405efc6a6982740330c25d4298f38e9f440b2f3236cc607
:github_stars: 85
:github_subscribers: 6
:github_issues: 5
:github_forks: 33
:github_contributors: 0
fastlane-plugin-download_github_release_asset:
:initial_commit: 2016-10-16
:age_in_days: 497
:readme_score: 100
:tests: 2
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: download_github_release_asset
category:
description: Downloads a GitHub release's asset
details: This action downloads a GitHub release's asset using the GitHub API and
puts it in a destination path.\nIf the file has been previously downloaded,
it will be overrided.
:sha: 639b1e2c6c7c8730e6a57b3129e9767247b1aaf4aef11c98fe6b9c7dd179ebc8
:github_stars: 2
:github_subscribers: 1
:github_issues: 0
:github_forks: 0
:github_contributors: 1
fastlane-plugin-review_time:
:initial_commit: 2017-05-18
:age_in_days: 283
:readme_score: 100
:tests: 1
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: review_time
category:
description: Fetches live iOS and macOS review times from appreviewtimes.com
details:
:sha: 9a9d4f388cb3244c26e2baf7cdbf86f74f6a2daede1ff2b2e7f3de071c82caba
:github_stars: 21
:github_subscribers: 1
:github_issues: 0
:github_forks: 2
:github_contributors: 3
fastlane-plugin-get_version_name:
:initial_commit: 2016-07-28
:age_in_days: 577
:readme_score: 50
:tests: 1
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: get_version_name
category:
description: Get the version name of an Android project. This action will return
the version name of your project according to the one set in your build.gradle
file
details:
:sha: 82b8066b45d26e117d0365860e10057f129162a3e8103486c724fbbf17f092b1
:github_stars: 4
:github_subscribers: 2
:github_issues: 3
:github_forks: 3
:github_contributors: 1
fastlane-plugin-commit_android_version_bump:
:initial_commit: 2016-08-01
:age_in_days: 573
:readme_score: 50
:tests: 1
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: commit_android_version_bump
category:
description: This Android plugins allow you to commit every modification done
in your build.gradle file during the execution of a lane. In fast, it do the
same as the commit_version_bump action, but for Android
details:
:sha: 61dad5789b7176c27bc1b059859bc17ebfcfcf31fe8ecfeaff2beb8d1774697a
:github_stars: 4
:github_subscribers: 1
:github_issues: 3
:github_forks: 4
:github_contributors: 2
fastlane-plugin-prepare_build_resources:
:initial_commit: 2016-07-14
:age_in_days: 591
:readme_score: 100
:tests: 3
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: prepare_build_resources
category:
description: Prepares certificates and provisioning profiles for building and
removes them afterwards.
details:
:sha: 988861b31244683049fdbad802ca72091b985c88428c15a50ce1e49d2a616901
:github_stars: 6
:github_subscribers: 3
:github_issues: 1
:github_forks: 1
:github_contributors: 3
fastlane-plugin-sharethemeal:
:initial_commit: 2016-09-27
:age_in_days: 516
:readme_score: 100
:tests: 1
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: sharethemeal
category:
description: Donate food via ShareTheMeal
details:
:sha: 395524db332c192c05e5040df3a90496a3d3f5e77bc44ac1edc6b10fba49358e
:github_stars: 7
:github_subscribers: 1
:github_issues: 0
:github_forks: 2
:github_contributors: 3
fastlane-plugin-localization:
:initial_commit: 2016-07-28
:age_in_days: 577
:readme_score: 100
:tests: 1
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: import_localizations
category:
description: Import app localizations with help of xcodebuild -importLocalizations
tool
details:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: export_localizations
category:
description: Export app localizations with help of xcodebuild -exportLocalizations
tool
details:
:sha: 7bdb96a30fbb2d761a578c9d270a78bcddaf53ea296297ae0dbade4f2aedb198
:github_stars: 9
:github_subscribers: 0
:github_issues: 1
:github_forks: 3
:github_contributors: 1
fastlane-plugin-get_version_code:
:initial_commit: 2016-07-29
:age_in_days: 576
:readme_score: 50
:tests: 1
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: get_version_code
category:
description: Get the version code of an Android project. This action will return
the version code of your project according to the one set in your build.gradle
file
details:
:sha: e4b8df72dc3da9b260ea6b87cae0cf140faacf3fb07feb409ee4dc207c707576
:github_stars: 4
:github_subscribers: 1
:github_issues: 0
:github_forks: 3
:github_contributors: 1
fastlane-plugin-onesky:
:initial_commit: 2016-10-24
:age_in_days: 489
:readme_score: 100
:tests: 1
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: onesky_upload
category:
description: Upload a strings file to OneSky
details:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: onesky_download
category:
description: Download a translation file from OneSky
details:
:sha: e327661a581df63757679adb465c47a6f32343f390233a3a8c44c7acc7561117
:github_stars: 15
:github_subscribers: 2
:github_issues: 1
:github_forks: 13
:github_contributors: 1
fastlane-plugin-synx:
:initial_commit: 2016-06-09
:age_in_days: 1433
:readme_score: 50
:tests: 1
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: synx
category:
description: Organise your Xcode project folder to match your Xcode groups.
details: A command-line tool that reorganizes your Xcode project folder to match
your Xcode groups.
:sha: 43e74356ea93a38859300b15227b0724250a9e75f1fa97839e2a8e7bc63d758d
:github_stars: 26
:github_subscribers: 2
:github_issues: 0
:github_forks: 4
:github_contributors: 0
fastlane-plugin-setup_fragile_tests_for_rescan:
:initial_commit: 2017-04-24
:age_in_days: 420
:readme_score: 100
:tests: 12
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: setup_fragile_tests_for_rescan
category: deprecated
description: Suppress stabile tests so that 'scan' can run the fragile tests again
details: Reviews the scan report file to find the passing tests in an Xcode project
and then suppresses the tests in the test-suite's source file.
:sha: 46b6ebfde3e68d83f01d987e654ea0019a92e8e66c12836c498a30720e946a4e
:github_stars: 6
:github_subscribers: 1
:github_issues: 0
:github_forks: 1
:github_contributors: 0
fastlane-plugin-yarn:
:initial_commit: 2016-12-21
:age_in_days: 1055
:readme_score: 100
:tests: 7
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: yarn
category:
description: Execute Yarn commands from your Fastfile
details: Execute Yarn commands from your Fastfile
:sha: f8ab866b4c5e3a115d9456e21de6a66bf7205ce22126a3dec68b280c1f794ddf
:github_stars: 16
:github_subscribers: 2
:github_issues: 0
:github_forks: 6
:github_contributors: 4
fastlane-plugin-applivery:
:initial_commit: 2016-07-26
:age_in_days: 1660
:readme_score: 100
:tests: 1
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: applivery
category: beta
description: Upload new iOS or Android build to Applivery
details:
:sha: d722ab4849fd969a04016107bc64bc7714a1b1745f477b39b7df29e44805838b
:github_stars: 12
:github_subscribers: 3
:github_issues: 0
:github_forks: 4
:github_contributors: 0
fastlane-plugin-xcake:
:initial_commit: 2015-10-10
:age_in_days: 869
:readme_score: 100
:tests: 264
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: xcake
category:
description: Runs `xcake` for the project
details:
:sha: 3b7c86f1e1b49bd910bce1c55ab28da6df602133997bcf3271ffcae426e27a1b
:github_stars: 464
:github_subscribers: 16
:github_issues: 5
:github_forks: 38
:github_contributors: 19
fastlane-plugin-pretty_junit:
:initial_commit: 2016-09-22
:age_in_days: 521
:readme_score: 50
:tests: 1
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: pretty_junit
category:
description: Pretty JUnit test results for your Android projects.
details: Pretty prints JUnit test results for your Android projects. You should
make sure that the previous test results are deleted before running the gradle
action, and that the grade action does not fail the lane on test failure. To
delete the files, you can use the delete_files plugin and pass in the same file
pattern that you pass to this action. To prevent the gradle action from failing
on test failure, you can hack around it by appending '|| true' to the end of
the 'flags' argument.
:sha: f08e198b80f08a63e1795875ee57b94852f7aeedf18ee7d9ad59c2336e6f3dc0
:github_stars: 1
:github_subscribers: 7
:github_issues: 0
:github_forks: 0
:github_contributors: 1
fastlane-plugin-ruby:
:initial_commit: 2016-05-25
:age_in_days: 641
:readme_score: 100
:tests: 0
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: rubocop
category:
description: Runs the code style checks
details:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: rspec
category:
description: Run tests using rspec
details:
:sha: 864bef41230e5e645a078d62904973c9790d6aa21cb91451af2e9336c2ec5601
:github_stars: 4
:github_subscribers: 2
:github_issues: 0
:github_forks: 2
:github_contributors: 1
fastlane-plugin-unzip:
:initial_commit: 2016-06-28
:age_in_days: 607
:readme_score: 100
:tests: 1
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: unzip
category:
description: Extract compressed files in a ZIP
details: "\\n"
:sha: d921c4069f7cdd441ee5380d89effbf2d30493f3b5577611c24dc1be139ca232
:github_stars: 2
:github_subscribers: 1
:github_issues: 0
:github_forks: 0
:github_contributors: 1
fastlane-plugin-cordova:
:initial_commit: 2016-12-10
:age_in_days: 2672
:readme_score: 100
:tests: 0
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: cordova
category: building
description: Build your Cordova app
details: Easily integrate your cordova build into a Fastlane setup
:sha: f5a1023b31c3a9c09a2005e5b5d7eb75029b9174a5a97f9827fccb3d0352e866
:github_stars: 115
:github_subscribers: 10
:github_issues: 21
:github_forks: 38
:github_contributors: 0
fastlane-plugin-clubmate:
:initial_commit: 2016-05-30
:age_in_days: 636
:readme_score: 100
:tests: 1
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: clubmate
category:
description: Print a Club Mate in your build output
details:
:sha: b6204cc8787d4263d6b17d125fec926970f95d973358ab7a75b9491db8514075
:github_stars: 8
:github_subscribers: 2
:github_issues: 0
:github_forks: 0
:github_contributors: 3
fastlane-plugin-s3_actions:
:initial_commit: 2016-12-18
:age_in_days: 434
:readme_score: 100
:tests: 0
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: s3_download
category:
description: Download a file from AWS S3
details:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: s3_check_file
category:
description: Check if file exists in AWS S3
details:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: s3_upload
category:
description: Upload a file to AWS S3
details:
:sha: 7dcee0f1ee5cfaddba51f34fd29b135a0a2ab9451b71fba3732140190ef2e20d
:github_stars: 1
:github_subscribers: 0
:github_issues: 1
:github_forks: 2
:github_contributors: 1
fastlane-plugin-settings_bundle:
:initial_commit: 2016-11-02
:age_in_days: 939
:readme_score: 100
:tests: 49
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: update_settings_bundle
category: project
description:
details: actions.
:sha: f769ee6bc62383842361c034e223e5d2dad6a596169fbc9af56543e1a56e76f2
:github_stars: 20
:github_subscribers: 2
:github_issues: 1
:github_forks: 8
:github_contributors: 0
fastlane-plugin-android_versioning:
:initial_commit: 2017-02-18
:age_in_days: 1790
:readme_score: 50
:tests: 22
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: get_value_from_build
category:
description:
details:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: get_version_code
category:
description: Get the version code of your project
details: " "
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: get_version_name
category:
description: Get the version name of your project
details: " "
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: increment_version_code
category:
description: Increment the version code of your project
details: "\\n"
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: increment_version_name
category:
description: Increment the version name of your project
details: "\\n"
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: set_value_in_build
category:
description: Set the value of your project
details: "\\n"
:sha: 1390a65c61059470e86c58c4ea515ab8504a9c21b9ab46fea0f0afd454bc6ed8
:github_stars: 51
:github_subscribers: 2
:github_issues: 1
:github_forks: 13
:github_contributors: 7
fastlane-plugin-upload_folder_to_s3:
:initial_commit: 2016-05-28
:age_in_days: 638
:readme_score: 100
:tests: 6
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: upload_folder_to_s3
category:
description: Upload a folder to S3
details: "\\n"
:sha: f064f36df5ae70651c07510315d426491b6a75489fa10a40ae393374c8cdda8d
:github_stars: 7
:github_subscribers: 1
:github_issues: 0
:github_forks: 2
:github_contributors: 5
fastlane-plugin-get_unprovisioned_devices_from_hockey:
:initial_commit: 2016-09-22
:age_in_days: 521
:readme_score: 100
:tests: 1
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: get_unprovisioned_devices_from_hockey
category:
description: Retrieves a list of unprovisioned devices from Hockey which can be
passed directly into register_devices.
details:
:sha: dddab8b072b29d0ddc5e42ed78ecf675cf4779745e5cb022cf7d42487a730df9
:github_stars: 6
:github_subscribers: 8
:github_issues: 0
:github_forks: 2
:github_contributors: 2
fastlane-plugin-merge_junit_report:
:initial_commit: 2017-02-04
:age_in_days: 386
:readme_score: 100
:tests: 10
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: merge_junit_report
category:
description: Provides the ability to merge multiple junit reports into one
details:
:sha: 154121b366285adbf9aece84020b19c2ad36e62be593d8f91dbf284daa761af3
:github_stars: 4
:github_subscribers: 1
:github_issues: 0
:github_forks: 1
:github_contributors: 1
fastlane-plugin-mobile_center:
:initial_commit: 2017-05-08
:age_in_days: 293
:readme_score: 100
:tests: 30
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: appcenter_upload
category:
description: Distribute new release to App Center
details: Symbols will also be uploaded automatically if a `app.dSYM.zip` file
is found next to `app.ipa`. In case it is located in a different place you can
specify the path explicitly in `:dsym` parameter.
:sha: c6e1039bd6f708c6d0fb97567b532a4d48bc6e0a053ab149275f2b16d09cc439
:github_stars: 47
:github_subscribers: 11
:github_issues: 11
:github_forks: 9
:github_contributors: 7
fastlane-plugin-instrumented_tests:
:initial_commit: 2016-07-04
:age_in_days: 687
:readme_score: 100
:tests: 1
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: instrumented_tests
category:
description: Run android instrumented tests via a gradle command againts a newly
created avd
details: "\\n"
:sha: ab5b2db551ee3881db221ea29c042e22391c2a48129f719bd69271ba6b03367c
:github_stars: 14
:github_subscribers: 3
:github_issues: 4
:github_forks: 3
:github_contributors: 0
fastlane-plugin-automated_test_emulator_run_xing:
:initial_commit: 2016-07-26
:age_in_days: 579
:readme_score: 100
:tests: 1
:actions:
- !ruby/object:FastlaneCore::Helper::PluginScoresHelper::FastlanePluginAction
name: automated_test_emulator_run_xing
category:
description: Starts AVD, based on AVD_setup.json file, before test launch and
kills it after testing is done.
details:
:sha: a4bf19230adac9d82a08e6fcf3ede05d9e80dd5681c31cbb1a36aa2d120953c6
:github_stars: 0