fastlane 2.25.0.beta.20170403010018 → 2.25.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/fastlane/plugins/template/.rubocop.yml +3 -0
- data/fastlane/lib/fastlane/version.rb +1 -1
- data/match/lib/match/generator.rb +1 -1
- data/match/lib/match/runner.rb +1 -1
- data/pilot/lib/pilot/build_manager.rb +5 -1
- data/snapshot/lib/snapshot/options.rb +5 -0
- data/snapshot/lib/snapshot/runner.rb +1 -0
- metadata +21 -20
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d45730302ccf621655ca587f8bd4e6125b0a55d0
|
|
4
|
+
data.tar.gz: faed8d005d8cd0578251d50b885f49d65fb43f99
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 430ce1737f4b100ac800d7c14c76660892464c357aa47522f1955bb3a3b56c913053515c01571a37ab77d5409926efd00f97337f7feb8aad37d278177ddbc39a
|
|
7
|
+
data.tar.gz: 880bcaa673c36c1b5c99e5426d6175d2eb9238b1be11e8ae407f40361994a7578c77c771dd46ec44bcdeed50f6002e8d6e74d14c0664c97fd024e8cf5dfe2061
|
data/match/lib/match/runner.rb
CHANGED
|
@@ -56,7 +56,7 @@ module Match
|
|
|
56
56
|
|
|
57
57
|
UI.success "All required keys, certificates and provisioning profiles are installed 🙌".green
|
|
58
58
|
rescue Spaceship::Client::UnexpectedResponse, Spaceship::Client::InvalidUserCredentialsError, Spaceship::Client::NoUserCredentialsError => ex
|
|
59
|
-
UI.error("An error
|
|
59
|
+
UI.error("An error occurred while verifying your certificates and profiles with the Apple Developer Portal.")
|
|
60
60
|
UI.error("If you already have your certificates stored in git, you can run `fastlane match` in readonly mode")
|
|
61
61
|
UI.error("to just install the certificates and profiles without accessing the Dev Portal.")
|
|
62
62
|
UI.error("To do so, just pass `readonly: true` to your match call.")
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
require 'tmpdir'
|
|
2
|
+
|
|
1
3
|
module Pilot
|
|
2
4
|
class BuildManager < Manager
|
|
3
5
|
def upload(options)
|
|
@@ -9,10 +11,12 @@ module Pilot
|
|
|
9
11
|
|
|
10
12
|
UI.success("Ready to upload new build to TestFlight (App: #{app.apple_id})...")
|
|
11
13
|
|
|
14
|
+
dir = Dir.mktmpdir
|
|
15
|
+
|
|
12
16
|
platform = fetch_app_platform
|
|
13
17
|
package_path = FastlaneCore::IpaUploadPackageBuilder.new.generate(app_id: app.apple_id,
|
|
14
18
|
ipa_path: config[:ipa],
|
|
15
|
-
package_path:
|
|
19
|
+
package_path: dir,
|
|
16
20
|
platform: platform)
|
|
17
21
|
|
|
18
22
|
transporter = FastlaneCore::ItunesTransporter.new(options[:username], nil, false, options[:itc_provider])
|
|
@@ -80,6 +80,11 @@ module Snapshot
|
|
|
80
80
|
description: "Don't open the HTML summary after running _snapshot_",
|
|
81
81
|
default_value: false,
|
|
82
82
|
is_string: false),
|
|
83
|
+
FastlaneCore::ConfigItem.new(key: :skip_helper_version_check,
|
|
84
|
+
env_name: 'SNAPSHOT_SKIP_SKIP_HELPER_VERSION_CHECK',
|
|
85
|
+
description: "Do not check for most recent SnapshotHelper code",
|
|
86
|
+
default_value: false,
|
|
87
|
+
is_string: false),
|
|
83
88
|
FastlaneCore::ConfigItem.new(key: :clear_previous_screenshots,
|
|
84
89
|
env_name: 'SNAPSHOT_CLEAR_PREVIOUS_SCREENSHOTS',
|
|
85
90
|
description: "Enabling this option will automatically clear previously generated screenshots before running snapshot",
|
|
@@ -292,6 +292,7 @@ module Snapshot
|
|
|
292
292
|
|
|
293
293
|
# rubocop:disable Style/Next
|
|
294
294
|
def verify_helper_is_current
|
|
295
|
+
return if Snapshot.config[:skip_helper_version_check]
|
|
295
296
|
current_version = version_of_bundled_helper
|
|
296
297
|
UI.verbose "Checking that helper files contain #{current_version}"
|
|
297
298
|
|
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.25.0
|
|
4
|
+
version: 2.25.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Felix Krause
|
|
@@ -656,16 +656,16 @@ dependencies:
|
|
|
656
656
|
name: rubocop
|
|
657
657
|
requirement: !ruby/object:Gem::Requirement
|
|
658
658
|
requirements:
|
|
659
|
-
- -
|
|
659
|
+
- - '='
|
|
660
660
|
- !ruby/object:Gem::Version
|
|
661
|
-
version:
|
|
661
|
+
version: 0.48.1
|
|
662
662
|
type: :development
|
|
663
663
|
prerelease: false
|
|
664
664
|
version_requirements: !ruby/object:Gem::Requirement
|
|
665
665
|
requirements:
|
|
666
|
-
- -
|
|
666
|
+
- - '='
|
|
667
667
|
- !ruby/object:Gem::Version
|
|
668
|
-
version:
|
|
668
|
+
version: 0.48.1
|
|
669
669
|
- !ruby/object:Gem::Dependency
|
|
670
670
|
name: rb-readline
|
|
671
671
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -1297,23 +1297,23 @@ metadata:
|
|
|
1297
1297
|
post_install_message:
|
|
1298
1298
|
rdoc_options: []
|
|
1299
1299
|
require_paths:
|
|
1300
|
-
-
|
|
1301
|
-
- snapshot/lib
|
|
1302
|
-
- sigh/lib
|
|
1303
|
-
- spaceship/lib
|
|
1300
|
+
- cert/lib
|
|
1304
1301
|
- credentials_manager/lib
|
|
1305
|
-
- produce/lib
|
|
1306
|
-
- screengrab/lib
|
|
1307
|
-
- pilot/lib
|
|
1308
1302
|
- deliver/lib
|
|
1309
|
-
-
|
|
1310
|
-
- match/lib
|
|
1311
|
-
- cert/lib
|
|
1312
|
-
- supply/lib
|
|
1313
|
-
- scan/lib
|
|
1303
|
+
- fastlane/lib
|
|
1314
1304
|
- fastlane_core/lib
|
|
1315
1305
|
- frameit/lib
|
|
1316
1306
|
- gym/lib
|
|
1307
|
+
- match/lib
|
|
1308
|
+
- pem/lib
|
|
1309
|
+
- pilot/lib
|
|
1310
|
+
- produce/lib
|
|
1311
|
+
- scan/lib
|
|
1312
|
+
- screengrab/lib
|
|
1313
|
+
- sigh/lib
|
|
1314
|
+
- snapshot/lib
|
|
1315
|
+
- spaceship/lib
|
|
1316
|
+
- supply/lib
|
|
1317
1317
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
1318
1318
|
requirements:
|
|
1319
1319
|
- - ">="
|
|
@@ -1321,14 +1321,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
1321
1321
|
version: 2.0.0
|
|
1322
1322
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1323
1323
|
requirements:
|
|
1324
|
-
- - "
|
|
1324
|
+
- - ">="
|
|
1325
1325
|
- !ruby/object:Gem::Version
|
|
1326
|
-
version:
|
|
1326
|
+
version: '0'
|
|
1327
1327
|
requirements: []
|
|
1328
1328
|
rubyforge_project:
|
|
1329
|
-
rubygems_version: 2.
|
|
1329
|
+
rubygems_version: 2.5.2
|
|
1330
1330
|
signing_key:
|
|
1331
1331
|
specification_version: 4
|
|
1332
1332
|
summary: The easiest way to automate beta deployments and releases for your iOS and
|
|
1333
1333
|
Android apps
|
|
1334
1334
|
test_files: []
|
|
1335
|
+
has_rdoc:
|