fastlane 2.74.0.beta.20180108010004 → 2.74.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/fastlane/lib/.DS_Store +0 -0
- data/fastlane/lib/assets/.DS_Store +0 -0
- data/fastlane/lib/fastlane/.DS_Store +0 -0
- data/fastlane/lib/fastlane/actions/.DS_Store +0 -0
- data/fastlane/lib/fastlane/actions/docs/.DS_Store +0 -0
- data/fastlane/lib/fastlane/setup/.DS_Store +0 -0
- data/fastlane/lib/fastlane/version.rb +1 -1
- data/fastlane/swift/Deliverfile.swift +1 -1
- data/fastlane/swift/Fastlane.swift +10 -2
- data/fastlane/swift/Gymfile.swift +1 -1
- data/fastlane/swift/Matchfile.swift +1 -1
- data/fastlane/swift/Precheckfile.swift +1 -1
- data/fastlane/swift/Scanfile.swift +1 -1
- data/fastlane/swift/Screengrabfile.swift +1 -1
- data/fastlane/swift/Snapshotfile.swift +1 -1
- data/fastlane_core/lib/fastlane_core/helper.rb +1 -0
- metadata +22 -16
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a5d7628e44c9c2e28589921566f2608e56a53b89
|
|
4
|
+
data.tar.gz: 30c0b703e8d4cddc20026959962e224b669c48a6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c29ad97b7651e025f6463857ffe62151fdf8c4541e2b932905c43347978753e968f9320b247624482a98aabf8a492d7bed7b47ea2b17902de1a0a24501896f9b
|
|
7
|
+
data.tar.gz: a4c31cf81ba009e814861aac7965c51704f4306a419f2250d75752f7e863073ec464ee97c39ee16f77dae4d57d61b2503b1168469d50f69bc2be0e08fe0087c6
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
module Fastlane
|
|
2
|
-
VERSION = '2.74.0
|
|
2
|
+
VERSION = '2.74.0'.freeze
|
|
3
3
|
DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
|
|
4
4
|
MINIMUM_XCODE_RELEASE = "7.0".freeze
|
|
5
5
|
RUBOCOP_REQUIREMENT = '0.49.1'.freeze
|
|
@@ -709,6 +709,7 @@ func captureIosScreenshots(workspace: String? = nil,
|
|
|
709
709
|
addVideos: [String]? = nil,
|
|
710
710
|
buildlogPath: String = "~/Library/Logs/snapshot",
|
|
711
711
|
clean: Bool = false,
|
|
712
|
+
testWithoutBuilding: Bool? = nil,
|
|
712
713
|
configuration: String? = nil,
|
|
713
714
|
xcprettyArgs: String? = nil,
|
|
714
715
|
sdk: String? = nil,
|
|
@@ -739,6 +740,7 @@ func captureIosScreenshots(workspace: String? = nil,
|
|
|
739
740
|
RubyCommand.Argument(name: "add_videos", value: addVideos),
|
|
740
741
|
RubyCommand.Argument(name: "buildlog_path", value: buildlogPath),
|
|
741
742
|
RubyCommand.Argument(name: "clean", value: clean),
|
|
743
|
+
RubyCommand.Argument(name: "test_without_building", value: testWithoutBuilding),
|
|
742
744
|
RubyCommand.Argument(name: "configuration", value: configuration),
|
|
743
745
|
RubyCommand.Argument(name: "xcpretty_args", value: xcprettyArgs),
|
|
744
746
|
RubyCommand.Argument(name: "sdk", value: sdk),
|
|
@@ -771,6 +773,7 @@ func captureScreenshots(workspace: String? = nil,
|
|
|
771
773
|
addVideos: [String]? = nil,
|
|
772
774
|
buildlogPath: String = "~/Library/Logs/snapshot",
|
|
773
775
|
clean: Bool = false,
|
|
776
|
+
testWithoutBuilding: Bool? = nil,
|
|
774
777
|
configuration: String? = nil,
|
|
775
778
|
xcprettyArgs: String? = nil,
|
|
776
779
|
sdk: String? = nil,
|
|
@@ -801,6 +804,7 @@ func captureScreenshots(workspace: String? = nil,
|
|
|
801
804
|
RubyCommand.Argument(name: "add_videos", value: addVideos),
|
|
802
805
|
RubyCommand.Argument(name: "buildlog_path", value: buildlogPath),
|
|
803
806
|
RubyCommand.Argument(name: "clean", value: clean),
|
|
807
|
+
RubyCommand.Argument(name: "test_without_building", value: testWithoutBuilding),
|
|
804
808
|
RubyCommand.Argument(name: "configuration", value: configuration),
|
|
805
809
|
RubyCommand.Argument(name: "xcpretty_args", value: xcprettyArgs),
|
|
806
810
|
RubyCommand.Argument(name: "sdk", value: sdk),
|
|
@@ -828,7 +832,8 @@ func carthage(command: String = "bootstrap",
|
|
|
828
832
|
output: String? = nil,
|
|
829
833
|
configuration: String? = nil,
|
|
830
834
|
toolchain: String? = nil,
|
|
831
|
-
projectDirectory: String? = nil
|
|
835
|
+
projectDirectory: String? = nil,
|
|
836
|
+
newResolver: Bool? = nil) {
|
|
832
837
|
let command = RubyCommand(commandID: "", methodName: "carthage", className: nil, args: [RubyCommand.Argument(name: "command", value: command),
|
|
833
838
|
RubyCommand.Argument(name: "dependencies", value: dependencies),
|
|
834
839
|
RubyCommand.Argument(name: "use_ssh", value: useSsh),
|
|
@@ -844,7 +849,8 @@ func carthage(command: String = "bootstrap",
|
|
|
844
849
|
RubyCommand.Argument(name: "output", value: output),
|
|
845
850
|
RubyCommand.Argument(name: "configuration", value: configuration),
|
|
846
851
|
RubyCommand.Argument(name: "toolchain", value: toolchain),
|
|
847
|
-
RubyCommand.Argument(name: "project_directory", value: projectDirectory)
|
|
852
|
+
RubyCommand.Argument(name: "project_directory", value: projectDirectory),
|
|
853
|
+
RubyCommand.Argument(name: "new_resolver", value: newResolver)])
|
|
848
854
|
_ = runner.executeCommand(command)
|
|
849
855
|
}
|
|
850
856
|
func cert(development: Bool = false,
|
|
@@ -2977,6 +2983,7 @@ func snapshot(workspace: String? = snapshotfile.workspace,
|
|
|
2977
2983
|
addVideos: [String]? = snapshotfile.addVideos,
|
|
2978
2984
|
buildlogPath: String = snapshotfile.buildlogPath,
|
|
2979
2985
|
clean: Bool = snapshotfile.clean,
|
|
2986
|
+
testWithoutBuilding: Bool? = snapshotfile.testWithoutBuilding,
|
|
2980
2987
|
configuration: String? = snapshotfile.configuration,
|
|
2981
2988
|
xcprettyArgs: String? = snapshotfile.xcprettyArgs,
|
|
2982
2989
|
sdk: String? = snapshotfile.sdk,
|
|
@@ -3007,6 +3014,7 @@ func snapshot(workspace: String? = snapshotfile.workspace,
|
|
|
3007
3014
|
RubyCommand.Argument(name: "add_videos", value: addVideos),
|
|
3008
3015
|
RubyCommand.Argument(name: "buildlog_path", value: buildlogPath),
|
|
3009
3016
|
RubyCommand.Argument(name: "clean", value: clean),
|
|
3017
|
+
RubyCommand.Argument(name: "test_without_building", value: testWithoutBuilding),
|
|
3010
3018
|
RubyCommand.Argument(name: "configuration", value: configuration),
|
|
3011
3019
|
RubyCommand.Argument(name: "xcpretty_args", value: xcprettyArgs),
|
|
3012
3020
|
RubyCommand.Argument(name: "sdk", value: sdk),
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.74.0
|
|
4
|
+
version: 2.74.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Felix Krause
|
|
@@ -857,6 +857,8 @@ files:
|
|
|
857
857
|
- deliver/lib/deliver/upload_price_tier.rb
|
|
858
858
|
- deliver/lib/deliver/upload_screenshots.rb
|
|
859
859
|
- fastlane/README.md
|
|
860
|
+
- fastlane/lib/.DS_Store
|
|
861
|
+
- fastlane/lib/assets/.DS_Store
|
|
860
862
|
- fastlane/lib/assets/ActionDetails.md.erb
|
|
861
863
|
- fastlane/lib/assets/Actions.md.erb
|
|
862
864
|
- fastlane/lib/assets/AppfileTemplate
|
|
@@ -876,8 +878,10 @@ files:
|
|
|
876
878
|
- fastlane/lib/assets/s3_plist_template.erb
|
|
877
879
|
- fastlane/lib/assets/s3_version_template.erb
|
|
878
880
|
- fastlane/lib/fastlane.rb
|
|
881
|
+
- fastlane/lib/fastlane/.DS_Store
|
|
879
882
|
- fastlane/lib/fastlane/action.rb
|
|
880
883
|
- fastlane/lib/fastlane/action_collector.rb
|
|
884
|
+
- fastlane/lib/fastlane/actions/.DS_Store
|
|
881
885
|
- fastlane/lib/fastlane/actions/README.md
|
|
882
886
|
- fastlane/lib/fastlane/actions/actions_helper.rb
|
|
883
887
|
- fastlane/lib/fastlane/actions/adb.rb
|
|
@@ -930,6 +934,7 @@ files:
|
|
|
930
934
|
- fastlane/lib/fastlane/actions/deliver.rb
|
|
931
935
|
- fastlane/lib/fastlane/actions/deploygate.rb
|
|
932
936
|
- fastlane/lib/fastlane/actions/device_grid/README.md
|
|
937
|
+
- fastlane/lib/fastlane/actions/docs/.DS_Store
|
|
933
938
|
- fastlane/lib/fastlane/actions/docs/cert.md
|
|
934
939
|
- fastlane/lib/fastlane/actions/docs/deliver.md
|
|
935
940
|
- fastlane/lib/fastlane/actions/docs/frameit.md
|
|
@@ -1169,6 +1174,7 @@ files:
|
|
|
1169
1174
|
- fastlane/lib/fastlane/server/json_return_value_processor.rb
|
|
1170
1175
|
- fastlane/lib/fastlane/server/socket_server.rb
|
|
1171
1176
|
- fastlane/lib/fastlane/server/socket_server_action_command_executor.rb
|
|
1177
|
+
- fastlane/lib/fastlane/setup/.DS_Store
|
|
1172
1178
|
- fastlane/lib/fastlane/setup/crashlytics_beta.rb
|
|
1173
1179
|
- fastlane/lib/fastlane/setup/crashlytics_beta_command_line_handler.rb
|
|
1174
1180
|
- fastlane/lib/fastlane/setup/crashlytics_beta_info.rb
|
|
@@ -1585,24 +1591,24 @@ metadata:
|
|
|
1585
1591
|
post_install_message:
|
|
1586
1592
|
rdoc_options: []
|
|
1587
1593
|
require_paths:
|
|
1588
|
-
-
|
|
1589
|
-
-
|
|
1594
|
+
- cert/lib
|
|
1595
|
+
- credentials_manager/lib
|
|
1596
|
+
- deliver/lib
|
|
1597
|
+
- fastlane/lib
|
|
1598
|
+
- fastlane_core/lib
|
|
1599
|
+
- frameit/lib
|
|
1600
|
+
- gym/lib
|
|
1590
1601
|
- match/lib
|
|
1602
|
+
- pem/lib
|
|
1603
|
+
- pilot/lib
|
|
1591
1604
|
- precheck/lib
|
|
1592
|
-
- sigh/lib
|
|
1593
1605
|
- produce/lib
|
|
1594
1606
|
- scan/lib
|
|
1595
|
-
-
|
|
1607
|
+
- screengrab/lib
|
|
1608
|
+
- sigh/lib
|
|
1596
1609
|
- snapshot/lib
|
|
1597
|
-
- frameit/lib
|
|
1598
|
-
- fastlane/lib
|
|
1599
|
-
- cert/lib
|
|
1600
|
-
- pilot/lib
|
|
1601
1610
|
- spaceship/lib
|
|
1602
|
-
-
|
|
1603
|
-
- deliver/lib
|
|
1604
|
-
- fastlane_core/lib
|
|
1605
|
-
- pem/lib
|
|
1611
|
+
- supply/lib
|
|
1606
1612
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
1607
1613
|
requirements:
|
|
1608
1614
|
- - ">="
|
|
@@ -1610,12 +1616,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
1610
1616
|
version: 2.0.0
|
|
1611
1617
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1612
1618
|
requirements:
|
|
1613
|
-
- - "
|
|
1619
|
+
- - ">="
|
|
1614
1620
|
- !ruby/object:Gem::Version
|
|
1615
|
-
version:
|
|
1621
|
+
version: '0'
|
|
1616
1622
|
requirements: []
|
|
1617
1623
|
rubyforge_project:
|
|
1618
|
-
rubygems_version: 2.
|
|
1624
|
+
rubygems_version: 2.6.12
|
|
1619
1625
|
signing_key:
|
|
1620
1626
|
specification_version: 4
|
|
1621
1627
|
summary: The easiest way to automate beta deployments and releases for your iOS and
|