fastlane 2.25.0.beta.20170331010039 → 2.25.0.beta.20170401010021

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 086ed911d61f23b58a412612758affbfc547bcee
4
- data.tar.gz: b2f75926eacfb4654e62524abaee35d3822cde26
3
+ metadata.gz: 865946213a5b6d300b8eed2873f3badd674fde2b
4
+ data.tar.gz: 62e650c4140d8157b06e0445db38c9f1d3793269
5
5
  SHA512:
6
- metadata.gz: 62db4c0a51f5e35319791b404a6734f8067a5a106c1277a9b5af4c05582044eda38ffd0f8d3ca4112307c014ef5e934ae8edad2063a724eacc6f9bb958e29ff4
7
- data.tar.gz: 97593b87c8de41d2280f74f405ab6a707cca4eef492ab5d12eea6d510a39ed2e3b8477af1b2c46e8f5cff4bc959abd6454ba566f67eacc600df912d745fc9248
6
+ metadata.gz: dcde07aab2d90a5e5bc325a5dd5c1df68ed9277425cf468c2a696490ca25e13dcfb7b87fabb35cb3a6141939836a88d2255eac6d0a918aa468e7637bbc3e6ec6
7
+ data.tar.gz: fb062c5604def6bfc3e4a3e98e2e848d9e600ddec0f0259118983ad68d9ad477b92f55b742f9b5ff1f285bdc9604a1507f32ab67b91085c180cef593c32a0027
@@ -1,7 +1,7 @@
1
1
  module Fastlane
2
2
  module Actions
3
3
  module SharedValues
4
- GIT_BRANCH_ENV_VARS = %w(GIT_BRANCH BRANCH_NAME TRAVIS_BRANCH BITRISE_GIT_BRANCH CI_BUILD_REF_NAME).freeze
4
+ GIT_BRANCH_ENV_VARS = %w(GIT_BRANCH BRANCH_NAME TRAVIS_BRANCH BITRISE_GIT_BRANCH CI_BUILD_REF_NAME CI_COMMIT_REF_NAME).freeze
5
5
  end
6
6
 
7
7
  class GitBranchAction < Action
@@ -1,4 +1,4 @@
1
1
  module Fastlane
2
- VERSION = '2.25.0.beta.20170331010039'.freeze
2
+ VERSION = '2.25.0.beta.20170401010021'.freeze
3
3
  DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
4
4
  end
@@ -146,8 +146,8 @@ module Pilot
146
146
  UI.message("New application; waiting for build train to appear on iTunes Connect")
147
147
  else
148
148
  builds = app.all_processing_builds(platform: platform)
149
- break if builds.count == 0
150
- latest_build = builds.last
149
+ latest_build = builds.last unless latest_build
150
+ break unless builds.include?(latest_build)
151
151
 
152
152
  if latest_build.valid and must_update_build_info
153
153
  # Set the changelog and/or description if necessary
@@ -77,11 +77,12 @@ module Screengrab
77
77
  # the first output by adb devices is "List of devices attached" so remove that and any adb startup output
78
78
  devices.reject! do |device|
79
79
  [
80
- 'server is out of date', # The adb server is out of date and must be restarted
81
- 'unauthorized', # The device has not yet accepted ADB control
82
- 'offline', # The device is offline, skip it
83
- '* daemon', # Messages printed when the daemon is starting up
84
- 'List of devices attached' # Header of table for data we want
80
+ 'server is out of date', # The adb server is out of date and must be restarted
81
+ 'unauthorized', # The device has not yet accepted ADB control
82
+ 'offline', # The device is offline, skip it
83
+ '* daemon', # Messages printed when the daemon is starting up
84
+ 'List of devices attached', # Header of table for data we want
85
+ "doesn't match this client" # Message printed when there is an ADB client/server version mismatch
85
86
  ].any? { |status| device.include? status }
86
87
  end
87
88
 
@@ -249,10 +250,12 @@ module Screengrab
249
250
  print_all: true,
250
251
  print_command: true)
251
252
 
252
- if @config[:exit_on_test_failure]
253
- UI.user_error!("Tests failed", show_github_issues: false) if test_output.include?("FAILURES!!!")
254
- else
255
- UI.error("Tests failed") if test_output.include?("FAILURES!!!")
253
+ if test_output.include?("FAILURES!!!")
254
+ if @config[:exit_on_test_failure]
255
+ UI.test_failure!("Tests failed for locale #{locale} on device #{device_serial}")
256
+ else
257
+ UI.error("Tests failed")
258
+ end
256
259
  end
257
260
  end
258
261
 
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.beta.20170331010039
4
+ version: 2.25.0.beta.20170401010021
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause
@@ -14,7 +14,7 @@ authors:
14
14
  autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
- date: 2017-03-31 00:00:00.000000000 Z
17
+ date: 2017-04-01 00:00:00.000000000 Z
18
18
  dependencies:
19
19
  - !ruby/object:Gem::Dependency
20
20
  name: slack-notifier
@@ -1297,23 +1297,23 @@ metadata:
1297
1297
  post_install_message:
1298
1298
  rdoc_options: []
1299
1299
  require_paths:
1300
+ - scan/lib
1301
+ - snapshot/lib
1302
+ - fastlane/lib
1300
1303
  - pem/lib
1304
+ - pilot/lib
1305
+ - deliver/lib
1306
+ - match/lib
1307
+ - sigh/lib
1308
+ - credentials_manager/lib
1301
1309
  - spaceship/lib
1310
+ - gym/lib
1302
1311
  - produce/lib
1303
- - cert/lib
1304
- - sigh/lib
1305
- - fastlane_core/lib
1306
1312
  - frameit/lib
1313
+ - fastlane_core/lib
1314
+ - cert/lib
1307
1315
  - screengrab/lib
1308
1316
  - supply/lib
1309
- - scan/lib
1310
- - snapshot/lib
1311
- - match/lib
1312
- - deliver/lib
1313
- - credentials_manager/lib
1314
- - fastlane/lib
1315
- - gym/lib
1316
- - pilot/lib
1317
1317
  required_ruby_version: !ruby/object:Gem::Requirement
1318
1318
  requirements:
1319
1319
  - - ">="