fastlane 2.59.0.beta.20170925010002 → 2.59.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 598784b23ebf57408df63081041929970e661022
4
- data.tar.gz: e5ab1baec8f52e712a4191df7781da6c120fa77b
3
+ metadata.gz: ab4ee1ec46e9f4839f1aad8df1ef52d20bc4cfd4
4
+ data.tar.gz: a7db50781977c84603bd0592974573ddb68ae837
5
5
  SHA512:
6
- metadata.gz: 74a882fa7f4fa2a66afec2842779bc4238569df4579e2594e610e16ed2922485ece1c87339626302e85ca80797ebdc765f9f3a8aef6d1692ca63660a0d6655c0
7
- data.tar.gz: 63932e7accdc796ddc75fb7d6d13c4cd269faec7356bcadbe74c85f494e9954595dd970b0c4763d70dae94ab6ee00e15a30eb4d8d13e74ae0fee9bb80917d01c
6
+ metadata.gz: 1b2d910149541213e232c30b768405f36cefbb56bc466aa448010c88bc0cc27afc9081be8071459ca15965097c392ffb95b1ff2b270d42b6219132557869fa3a
7
+ data.tar.gz: d9830b2d77650c8c6c385671f5b0573000c326d53553c282bede25262e99c92eb896a4adba78b3f8d6ffe3544e443b5f6a715745bf2c4be916f7bdeb607b3cee
Binary file
Binary file
@@ -131,7 +131,7 @@ module Fastlane
131
131
  FastlaneCore::ConfigItem.new(key: :dsym_path,
132
132
  env_name: "FL_UPLOAD_SYMBOLS_TO_CRASHLYTICS_DSYM_PATH",
133
133
  description: "Path to the DSYM file or zip to upload",
134
- default_value: ENV[SharedValues::DSYM_OUTPUT_PATH.to_s] || (Dir["./**/*.dSYM"] + Dir["./**/*.dSYM.zip"]).first,
134
+ default_value: ENV[SharedValues::DSYM_OUTPUT_PATH.to_s] || (Dir["./**/*.dSYM"] + Dir["./**/*.dSYM.zip"]).sort_by { |f| File.mtime(f) }.last,
135
135
  optional: true,
136
136
  verify_block: proc do |value|
137
137
  UI.user_error!("Couldn't find file at path '#{File.expand_path(value)}'") unless File.exist?(value)
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
- VERSION = '2.59.0.beta.20170925010002'.freeze
2
+ VERSION = '2.59.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
  end
@@ -32,6 +32,7 @@ module FastlaneCore
32
32
 
33
33
  @errors = []
34
34
  @warnings = []
35
+ @all_lines = []
35
36
 
36
37
  if hide_output
37
38
  # Show a one time message instead
@@ -43,6 +44,7 @@ module FastlaneCore
43
44
  PTY.spawn(command) do |stdin, stdout, pid|
44
45
  begin
45
46
  stdin.each do |line|
47
+ @all_lines << line
46
48
  parse_line(line, hide_output) # this is where the parsing happens
47
49
  end
48
50
  rescue Errno::EIO
@@ -69,7 +71,12 @@ module FastlaneCore
69
71
  raise TransporterRequiresApplicationSpecificPasswordError
70
72
  end
71
73
 
72
- if @errors.count > 0
74
+ if @errors.count > 0 && @all_lines.count > 0
75
+ # Print out the last 15 lines, this is key for non-verbose mode
76
+ @all_lines.last(15).each do |line|
77
+ UI.important("[iTMSTransporter] #{line}")
78
+ end
79
+ UI.message("iTunes Transporter output above ^")
73
80
  UI.error(@errors.join("\n"))
74
81
  end
75
82
 
@@ -93,7 +100,7 @@ module FastlaneCore
93
100
 
94
101
  re = Regexp.union(SKIP_ERRORS)
95
102
  if line.match(re)
96
- # Those lines will not be handle like errors or warnings
103
+ # Those lines will not be handled like errors or warnings
97
104
 
98
105
  elsif line =~ ERROR_REGEX
99
106
  @errors << $1
@@ -107,7 +114,7 @@ module FastlaneCore
107
114
  CredentialsManager::AccountManager.new(user: @user).invalid_credentials
108
115
  UI.error("Please run this tool again to apply the new password")
109
116
  end
110
- elsif $1.include? "Redundant Binary Upload. There already exists a binary upload with build"
117
+ elsif $1.include?("Redundant Binary Upload. There already exists a binary upload with build")
111
118
  UI.error($1)
112
119
  UI.error("You have to change the build number of your app to upload your ipa file")
113
120
  end
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.59.0.beta.20170925010002
4
+ version: 2.59.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause
@@ -828,6 +828,8 @@ files:
828
828
  - deliver/lib/deliver/upload_price_tier.rb
829
829
  - deliver/lib/deliver/upload_screenshots.rb
830
830
  - fastlane/README.md
831
+ - fastlane/lib/.DS_Store
832
+ - fastlane/lib/assets/.DS_Store
831
833
  - fastlane/lib/assets/ActionDetails.md.erb
832
834
  - fastlane/lib/assets/Actions.md.erb
833
835
  - fastlane/lib/assets/AppfileTemplate
@@ -1443,24 +1445,24 @@ metadata:
1443
1445
  post_install_message:
1444
1446
  rdoc_options: []
1445
1447
  require_paths:
1446
- - spaceship/lib
1447
- - scan/lib
1448
- - sigh/lib
1449
- - snapshot/lib
1450
- - screengrab/lib
1451
- - fastlane/lib
1452
1448
  - cert/lib
1453
- - pem/lib
1454
- - gym/lib
1455
- - produce/lib
1449
+ - credentials_manager/lib
1456
1450
  - deliver/lib
1457
- - supply/lib
1458
- - match/lib
1451
+ - fastlane/lib
1452
+ - fastlane_core/lib
1459
1453
  - frameit/lib
1460
- - credentials_manager/lib
1454
+ - gym/lib
1455
+ - match/lib
1456
+ - pem/lib
1461
1457
  - pilot/lib
1462
1458
  - precheck/lib
1463
- - fastlane_core/lib
1459
+ - produce/lib
1460
+ - scan/lib
1461
+ - screengrab/lib
1462
+ - sigh/lib
1463
+ - snapshot/lib
1464
+ - spaceship/lib
1465
+ - supply/lib
1464
1466
  required_ruby_version: !ruby/object:Gem::Requirement
1465
1467
  requirements:
1466
1468
  - - ">="
@@ -1468,14 +1470,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
1468
1470
  version: 2.0.0
1469
1471
  required_rubygems_version: !ruby/object:Gem::Requirement
1470
1472
  requirements:
1471
- - - ">"
1473
+ - - ">="
1472
1474
  - !ruby/object:Gem::Version
1473
- version: 1.3.1
1475
+ version: '0'
1474
1476
  requirements: []
1475
1477
  rubyforge_project:
1476
- rubygems_version: 2.4.5.1
1478
+ rubygems_version: 2.6.10
1477
1479
  signing_key:
1478
1480
  specification_version: 4
1479
1481
  summary: The easiest way to automate beta deployments and releases for your iOS and
1480
1482
  Android apps
1481
1483
  test_files: []
1484
+ has_rdoc: