fastlane 2.15.0.beta.20170213032052 → 2.15.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/deliver/README.md +0 -2
- data/fastlane/lib/fastlane/version.rb +1 -1
- data/match/lib/match/setup.rb +1 -1
- data/pilot/lib/pilot/build_manager.rb +5 -3
- data/pilot/lib/pilot/commands_generator.rb +0 -1
- data/sigh/lib/sigh/runner.rb +1 -1
- metadata +16 -15
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 383425b6313a087ef4f1eaee91d838ba310e0026
|
|
4
|
+
data.tar.gz: 0009a6ba8fbd8d23786cdb3cae05b74d4a3fc625
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: edd95a1b19bed265c452b9791919f60f1e6d45486380dddc936818e1e068c680c161d6eb8652a480571844d254503cb45e1865cb2142455eceb27323d56d1ba2
|
|
7
|
+
data.tar.gz: 7a870f2573a5664305c14200b4e2690914f1ca36f79b17574ca865af0f2cb16798bc90058d350bcff4b8a77243f92d1f10a315ec29b62ee099316e29112a32f5
|
data/deliver/README.md
CHANGED
|
@@ -87,8 +87,6 @@ The guide will create all the necessary files for you, using the existing app me
|
|
|
87
87
|
|
|
88
88
|
From now on, you can run `fastlane deliver` to deploy a new update, or just upload new app metadata and screenshots.
|
|
89
89
|
|
|
90
|
-
Already using `deliver` and just updated to 1.0? Check out the [Migration Guide](https://github.com/fastlane/fastlane/blob/master/deliver/MigrationGuide.md).
|
|
91
|
-
|
|
92
90
|
# Usage
|
|
93
91
|
|
|
94
92
|
Check out your local `./fastlane/metadata` and `./fastlane/screenshots` folders (if you don't use [fastlane](https://fastlane.tools) it's `./metadata` instead)
|
data/match/lib/match/setup.rb
CHANGED
|
@@ -11,7 +11,7 @@ module Match
|
|
|
11
11
|
File.write(path, template)
|
|
12
12
|
UI.success "Successfully created '#{path}'. You can open the file using a code editor."
|
|
13
13
|
|
|
14
|
-
UI.important "You can now run `match development`, `match adhoc` and `match appstore`"
|
|
14
|
+
UI.important "You can now run `fastlane match development`, `fastlane match adhoc` and `fastlane match appstore`"
|
|
15
15
|
UI.message "On the first run for each environment it will create the provisioning profiles and"
|
|
16
16
|
UI.message "certificates for you. From then on, it will automatically import the existing profiles."
|
|
17
17
|
UI.message "For more information visit https://github.com/fastlane/fastlane/tree/master/match"
|
|
@@ -22,7 +22,7 @@ module Pilot
|
|
|
22
22
|
UI.user_error!("Error uploading ipa file, for more information see above")
|
|
23
23
|
end
|
|
24
24
|
|
|
25
|
-
UI.
|
|
25
|
+
UI.success("Successfully uploaded the new binary to iTunes Connect")
|
|
26
26
|
|
|
27
27
|
if config[:skip_waiting_for_build_processing]
|
|
28
28
|
UI.important("Skip waiting for build processing")
|
|
@@ -61,7 +61,8 @@ module Pilot
|
|
|
61
61
|
return
|
|
62
62
|
end
|
|
63
63
|
|
|
64
|
-
|
|
64
|
+
type = options[:distribute_external] ? 'External' : 'Internal'
|
|
65
|
+
UI.message("Distributing build #{build.train_version}(#{build.build_version}) from #{build.testing_status} -> #{type}")
|
|
65
66
|
end
|
|
66
67
|
|
|
67
68
|
unless config[:update_build_info_on_upload]
|
|
@@ -73,7 +74,8 @@ module Pilot
|
|
|
73
74
|
|
|
74
75
|
return if config[:skip_submission]
|
|
75
76
|
distribute_build(build, options)
|
|
76
|
-
|
|
77
|
+
type = options[:distribute_external] ? 'External' : 'Internal'
|
|
78
|
+
UI.success("Successfully distributed build to #{type} testers 🚀")
|
|
77
79
|
end
|
|
78
80
|
|
|
79
81
|
def list(options)
|
|
@@ -64,7 +64,6 @@ module Pilot
|
|
|
64
64
|
c.description = "Distribute a previously uploaded binary to Apple TestFlight"
|
|
65
65
|
c.action do |args, options|
|
|
66
66
|
config = FastlaneCore::Configuration.create(Pilot::Options.available_options, convert_options(options))
|
|
67
|
-
config[:distribute_external] = true
|
|
68
67
|
Pilot::BuildManager.new.distribute(config)
|
|
69
68
|
end
|
|
70
69
|
end
|
data/sigh/lib/sigh/runner.rb
CHANGED
|
@@ -247,7 +247,7 @@ module Sigh
|
|
|
247
247
|
UI.message "Could not find App ID with bundle identifier '#{config[:app_identifier]}'"
|
|
248
248
|
UI.message "You can easily generate a new App ID on the Developer Portal using 'produce':"
|
|
249
249
|
UI.message ""
|
|
250
|
-
UI.message "produce -u #{config[:username]} -a #{config[:app_identifier]} --skip_itc".yellow
|
|
250
|
+
UI.message "fastlane produce -u #{config[:username]} -a #{config[:app_identifier]} --skip_itc".yellow
|
|
251
251
|
UI.message ""
|
|
252
252
|
UI.message "You will be asked for any missing information, like the full name of your app"
|
|
253
253
|
UI.message "If the app should also be created on iTunes Connect, remove the " + "--skip_itc".yellow + " from the command above"
|
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.15.0
|
|
4
|
+
version: 2.15.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Felix Krause
|
|
@@ -1295,23 +1295,23 @@ metadata: {}
|
|
|
1295
1295
|
post_install_message:
|
|
1296
1296
|
rdoc_options: []
|
|
1297
1297
|
require_paths:
|
|
1298
|
-
- sigh/lib
|
|
1299
1298
|
- cert/lib
|
|
1300
|
-
- pilot/lib
|
|
1301
|
-
- snapshot/lib
|
|
1302
|
-
- deliver/lib
|
|
1303
|
-
- match/lib
|
|
1304
|
-
- spaceship/lib
|
|
1305
1299
|
- credentials_manager/lib
|
|
1306
|
-
-
|
|
1300
|
+
- deliver/lib
|
|
1307
1301
|
- fastlane/lib
|
|
1308
|
-
- supply/lib
|
|
1309
1302
|
- fastlane_core/lib
|
|
1310
|
-
-
|
|
1311
|
-
- pem/lib
|
|
1312
|
-
- screengrab/lib
|
|
1303
|
+
- frameit/lib
|
|
1313
1304
|
- gym/lib
|
|
1305
|
+
- match/lib
|
|
1306
|
+
- pem/lib
|
|
1307
|
+
- pilot/lib
|
|
1314
1308
|
- produce/lib
|
|
1309
|
+
- scan/lib
|
|
1310
|
+
- screengrab/lib
|
|
1311
|
+
- sigh/lib
|
|
1312
|
+
- snapshot/lib
|
|
1313
|
+
- spaceship/lib
|
|
1314
|
+
- supply/lib
|
|
1315
1315
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
1316
1316
|
requirements:
|
|
1317
1317
|
- - ">="
|
|
@@ -1319,14 +1319,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
1319
1319
|
version: 2.0.0
|
|
1320
1320
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1321
1321
|
requirements:
|
|
1322
|
-
- - "
|
|
1322
|
+
- - ">="
|
|
1323
1323
|
- !ruby/object:Gem::Version
|
|
1324
|
-
version:
|
|
1324
|
+
version: '0'
|
|
1325
1325
|
requirements: []
|
|
1326
1326
|
rubyforge_project:
|
|
1327
|
-
rubygems_version: 2.
|
|
1327
|
+
rubygems_version: 2.5.1
|
|
1328
1328
|
signing_key:
|
|
1329
1329
|
specification_version: 4
|
|
1330
1330
|
summary: The easiest way to automate beta deployments and releases for your iOS and
|
|
1331
1331
|
Android apps
|
|
1332
1332
|
test_files: []
|
|
1333
|
+
has_rdoc:
|