fastlane 2.33.0 → 2.34.0.beta.20170524010028

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: f899e59c074db9539cb59ec80b36a8d86c326204
4
- data.tar.gz: 689b9764ca91554fbeb12798b9c5e1b886b382e7
3
+ metadata.gz: 7a981dabe599f6c33b7f167decb24f85fe11dac5
4
+ data.tar.gz: dc67db8fa80f2d37fb6bd689c217ccbbb014b20c
5
5
  SHA512:
6
- metadata.gz: 420f76fa7446dd65956c8da904f3ef70fe6a813e44fe112c4f1e0902f77f627f08244fa1fdd69455369f88214844941df2bf9d0e7bb1e90c4f218815c97efa89
7
- data.tar.gz: c79a2ae773a17e4fb33d2c0466bc2ef13c2b3482c987bb4ae5443ccd6709c2e54f2a6ed2423b51d39e43cac172ffe0fdb53f1f85b19a515193c501b066616410
6
+ metadata.gz: e79043dd42b1d821f39d6a81fd693bc5ea8eec44c077d710e42956f375d5cfba541b4d6fc738760abf4da0a43b23ccdf083e7368d3f76d4d9e069bdbd6e0d3ba
7
+ data.tar.gz: bf0c1038c7efb8a8cc2eec5562b7605ff042c80d5d1c778644b5a6477355d8a8d14fbb943e36994252ac904305c22c25085e559a626f38b5076743c38e66dfcf
@@ -98,7 +98,7 @@ module Fastlane
98
98
  env_name: "FL_SLACK_DEFAULT_PAYLOADS",
99
99
  description: "Remove some of the default payloads. More information about the available payloads on GitHub",
100
100
  optional: true,
101
- is_string: false),
101
+ type: Array),
102
102
  FastlaneCore::ConfigItem.new(key: :attachment_properties,
103
103
  env_name: "FL_SLACK_ATTACHMENT_PROPERTIES",
104
104
  description: "Merge additional properties in the slack attachment, see https://api.slack.com/docs/attachments",
@@ -1,4 +1,4 @@
1
1
  module Fastlane
2
- VERSION = '2.33.0'.freeze
2
+ VERSION = '2.34.0.beta.20170524010028'.freeze
3
3
  DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
4
4
  end
@@ -62,7 +62,14 @@ module FastlaneCore
62
62
 
63
63
  return did_show if did_show
64
64
 
65
- File.write(path, '1')
65
+ begin
66
+ File.write(path, '1')
67
+ rescue
68
+ if FastlaneCore::Globals.verbose?
69
+ UI.error("Cannot write out file indicating that crash report announcement has been displayed.")
70
+ UI.error("The following message will be displayed on the next crash as well:")
71
+ end
72
+ end
66
73
  false
67
74
  end
68
75
 
@@ -254,6 +254,7 @@ module FastlaneCore
254
254
 
255
255
  logarchive_dst = Shellwords.escape(File.join(logs_destination_dir, "system_logs-#{log_identity}.logarchive"))
256
256
  FileUtils.rm_rf(logarchive_dst)
257
+ FileUtils.mkdir_p(logarchive_dst)
257
258
  command = "xcrun simctl spawn #{device.udid} log collect --output #{logarchive_dst} 2>/dev/null"
258
259
  FastlaneCore::CommandExecutor.execute(command: command, print_all: false, print_command: true)
259
260
  end
@@ -153,7 +153,7 @@ module Scan
153
153
  end
154
154
 
155
155
  default = lambda do
156
- UI.error("Couldn't find any matching simulators for '#{devices}' - falling back to default simulator")
156
+ UI.error("Couldn't find any matching simulators for '#{devices}' - falling back to default simulator") if (devices || []).count > 0
157
157
 
158
158
  result = Array(
159
159
  simulators
@@ -163,7 +163,7 @@ module Scan
163
163
  .last || simulators.first
164
164
  )
165
165
 
166
- UI.error("Found simulator \"#{result.first.name} (#{result.first.os_version})\"") if result.first
166
+ UI.message("Found simulator \"#{result.first.name} (#{result.first.os_version})\"") if result.first
167
167
 
168
168
  result
169
169
  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.33.0
4
+ version: 2.34.0.beta.20170524010028
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-05-23 00:00:00.000000000 Z
18
+ date: 2017-05-24 00:00:00.000000000 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: slack-notifier
@@ -802,8 +802,6 @@ files:
802
802
  - deliver/lib/deliver/upload_price_tier.rb
803
803
  - deliver/lib/deliver/upload_screenshots.rb
804
804
  - fastlane/README.md
805
- - fastlane/lib/.DS_Store
806
- - fastlane/lib/assets/.DS_Store
807
805
  - fastlane/lib/assets/Actions.md.erb
808
806
  - fastlane/lib/assets/AppfileTemplate
809
807
  - fastlane/lib/assets/AppfileTemplateAndroid
@@ -1370,23 +1368,23 @@ metadata:
1370
1368
  post_install_message:
1371
1369
  rdoc_options: []
1372
1370
  require_paths:
1373
- - cert/lib
1374
- - credentials_manager/lib
1375
- - deliver/lib
1376
- - fastlane/lib
1377
- - fastlane_core/lib
1378
- - frameit/lib
1379
- - gym/lib
1380
- - match/lib
1381
1371
  - pem/lib
1372
+ - spaceship/lib
1373
+ - match/lib
1382
1374
  - pilot/lib
1383
- - produce/lib
1384
- - scan/lib
1385
1375
  - screengrab/lib
1376
+ - produce/lib
1377
+ - deliver/lib
1378
+ - cert/lib
1379
+ - frameit/lib
1380
+ - fastlane/lib
1381
+ - gym/lib
1386
1382
  - sigh/lib
1387
1383
  - snapshot/lib
1388
- - spaceship/lib
1389
1384
  - supply/lib
1385
+ - fastlane_core/lib
1386
+ - credentials_manager/lib
1387
+ - scan/lib
1390
1388
  required_ruby_version: !ruby/object:Gem::Requirement
1391
1389
  requirements:
1392
1390
  - - ">="
@@ -1394,15 +1392,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
1394
1392
  version: 2.0.0
1395
1393
  required_rubygems_version: !ruby/object:Gem::Requirement
1396
1394
  requirements:
1397
- - - ">="
1395
+ - - ">"
1398
1396
  - !ruby/object:Gem::Version
1399
- version: '0'
1397
+ version: 1.3.1
1400
1398
  requirements: []
1401
1399
  rubyforge_project:
1402
- rubygems_version: 2.6.10
1400
+ rubygems_version: 2.4.5.2
1403
1401
  signing_key:
1404
1402
  specification_version: 4
1405
1403
  summary: The easiest way to automate beta deployments and releases for your iOS and
1406
1404
  Android apps
1407
1405
  test_files: []
1408
- has_rdoc:
Binary file
Binary file