fastlane 2.70.0.beta.20171213010003 → 2.70.0.beta.20171214010003
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/assets/DefaultFastfileTemplate +2 -2
- data/fastlane/lib/assets/DefaultFastfileTemplate.swift +9 -10
- data/fastlane/lib/fastlane/actions/sync_code_signing.rb +1 -1
- data/fastlane/lib/fastlane/version.rb +1 -1
- data/fastlane_core/lib/fastlane_core/core_ext/cfpropertylist.rb +1 -1
- data/gym/lib/gym/generators/package_command_generator_xcode7.rb +2 -3
- data/match/lib/match/options.rb +2 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 51f8198e7fb06c3f69fcabe65541c601da9a358b
|
4
|
+
data.tar.gz: b19ce78468611f4eccfc5c90cfd435f5a6632560
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fd28428cf03bc1e23b6691419e239b4f913a123dbeaf19f71d3f52c769caf4c8a684d9b0301551bbaeb5ca648082a1cadfc8c01cd433813f36c1ff172f02a7c3
|
7
|
+
data.tar.gz: a1bf84d8a643d9681299ffac5e223f51e7072496e7dbbfac4731421697e15ba4f1c1caa4c1ae26ed6f0b238a74827485ffef20bfa3380b378dc87a27c17178a1
|
@@ -30,7 +30,7 @@ platform :ios do
|
|
30
30
|
desc "Submit a new Beta Build to Apple TestFlight"
|
31
31
|
desc "This will also make sure the profile is up to date"
|
32
32
|
lane :beta do
|
33
|
-
#
|
33
|
+
# sync_code_signing(type: "appstore") # more information: https://codesigning.guide
|
34
34
|
build_app[[SCHEME]] # more options available
|
35
35
|
upload_to_testflight
|
36
36
|
|
@@ -42,7 +42,7 @@ platform :ios do
|
|
42
42
|
lane :release do
|
43
43
|
# sync_code_signing(type: "appstore")
|
44
44
|
capture_screenshots
|
45
|
-
build_app[[SCHEME]] #
|
45
|
+
build_app[[SCHEME]] # more options available
|
46
46
|
upload_to_app_store(force: true)
|
47
47
|
# frame_screenshots
|
48
48
|
end
|
@@ -24,27 +24,26 @@ class Fastfile: LaneFile {
|
|
24
24
|
|
25
25
|
func testLane() {
|
26
26
|
desc("Runs all the tests")
|
27
|
-
|
27
|
+
runTests()
|
28
28
|
}
|
29
29
|
|
30
30
|
func betaLane() {
|
31
31
|
desc("Submit a new Beta Build to Apple TestFlight. This will also make sure the profile is up to date")
|
32
32
|
|
33
|
-
|
34
|
-
//
|
35
|
-
|
36
|
-
pilot(username: appleID)
|
33
|
+
// syncCodeSigning(gitUrl: "gitUrl", appIdentifier: [appIdentifier], username: appleID)
|
34
|
+
buildApp([[SCHEME]]) // more options available
|
35
|
+
uploadToTestflight(username: appleID)
|
37
36
|
// You can also use other beta testing services here (run `fastlane actions`)
|
38
37
|
}
|
39
38
|
|
40
39
|
func releaseLane() {
|
41
40
|
desc("Deploy a new version to the App Store")
|
42
41
|
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
//
|
42
|
+
// syncCodeSigning(gitUrl: "gitUrl", type: "appstore", appIdentifier: [appIdentifier], username: appleID)
|
43
|
+
captureScreenshots()
|
44
|
+
buildApp([[SCHEME]]) // more options available
|
45
|
+
uploadToAppStore(username: appleID, app: appIdentifier, force: true)
|
46
|
+
// frameScreenshots()
|
48
47
|
}
|
49
48
|
|
50
49
|
// You can define as many lanes as you want
|
@@ -84,7 +84,7 @@ module Fastlane
|
|
84
84
|
|
85
85
|
def self.example_code
|
86
86
|
[
|
87
|
-
'sync_code_signing(type: "appstore", app_identifier:
|
87
|
+
'sync_code_signing(type: "appstore", app_identifier: "tools.fastlane.app")',
|
88
88
|
'sync_code_signing(type: "development", readonly: true)',
|
89
89
|
'sync_code_signing(app_identifier: ["tools.fastlane.app", "tools.fastlane.sleepy"])',
|
90
90
|
'match # alias for "sync_code_signing"'
|
@@ -1,5 +1,5 @@
|
|
1
1
|
module Fastlane
|
2
|
-
VERSION = '2.70.0.beta.
|
2
|
+
VERSION = '2.70.0.beta.20171214010003'.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
|
@@ -5,6 +5,7 @@
|
|
5
5
|
# `incompatible encoding regexp match (UTF-8 regexp with ASCII-8BIT string) (Encoding::CompatibilityError)`
|
6
6
|
|
7
7
|
require 'tempfile'
|
8
|
+
require 'fastlane_core/core_ext/cfpropertylist'
|
8
9
|
|
9
10
|
module Gym
|
10
11
|
# Responsible for building the fully working xcodebuild command
|
@@ -159,8 +160,6 @@ module Gym
|
|
159
160
|
end
|
160
161
|
|
161
162
|
def config_content
|
162
|
-
require 'plist'
|
163
|
-
|
164
163
|
hash = read_export_options
|
165
164
|
|
166
165
|
# Overrides export options if needed
|
@@ -185,7 +184,7 @@ module Gym
|
|
185
184
|
if FastlaneCore::Globals.verbose?
|
186
185
|
UI.message("This results in the following plist file:")
|
187
186
|
UI.command_output("-----------------------------------------")
|
188
|
-
UI.command_output(to_plist
|
187
|
+
UI.command_output(hash.to_plist)
|
189
188
|
UI.command_output("-----------------------------------------")
|
190
189
|
end
|
191
190
|
|
data/match/lib/match/options.rb
CHANGED
@@ -33,7 +33,8 @@ module Match
|
|
33
33
|
env_name: "MATCH_APP_IDENTIFIER",
|
34
34
|
description: "The bundle identifier(s) of your app (comma-separated)",
|
35
35
|
is_string: false,
|
36
|
-
type: Array,
|
36
|
+
type: Array, # we actually allow String and Array here
|
37
|
+
skip_type_validation: true,
|
37
38
|
default_value: CredentialsManager::AppfileConfig.try_fetch_value(:app_identifier)),
|
38
39
|
FastlaneCore::ConfigItem.new(key: :username,
|
39
40
|
short_option: "-u",
|
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.70.0.beta.
|
4
|
+
version: 2.70.0.beta.20171214010003
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Felix Krause
|
@@ -15,7 +15,7 @@ authors:
|
|
15
15
|
autorequire:
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
|
-
date: 2017-12-
|
18
|
+
date: 2017-12-14 00:00:00.000000000 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: slack-notifier
|