fastlane_core 0.55.0 → 0.55.1

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: 143a7c6da823b3339aa428e4f014d93a119ca6a0
4
- data.tar.gz: 7d2fcfc0bfe13b5ab827b0bc8330e7932588f375
3
+ metadata.gz: 15569e69b11fb1c906618dab1b15745cf73fec2e
4
+ data.tar.gz: 6b3d537c701a743719981c9f2b8b809e3ab932a4
5
5
  SHA512:
6
- metadata.gz: 2e2565be6469178c77d4c09922f73ab9482be141bb061a5b01660550b82791a67fea5b0cb903fa768bb793ec31b6f292c6c497cea94adeb5331bef0186d7c01b
7
- data.tar.gz: 685302019000d5343555386b2872a2859a4e7bdfde570aba6ff9d2f969904e7b0d9c2115412c7d8c7669f64db5adc8bcf0147a8f75a5ad69334741df6bbcc3b0
6
+ metadata.gz: 833f17d2b339ca3fb4343a2c94310364e255415b81a60dadedab6af867e2788141498bd662eaac0d2286dea66171cf7f9f71eb9a60a1d87af5b02276bd1f7c6c
7
+ data.tar.gz: 94ec234c2a5872947beb3c10e81d8c2661bd1c6a942d538672cb5681d856cc52f5ac072acf78068000598918c0fc209ff0443cfec6cb0dea1b5403fc75ab16ce
@@ -61,13 +61,16 @@ module FastlaneCore
61
61
  show_message
62
62
  end
63
63
 
64
+ # `fastfile_id` helps us track success/failure metrics for Fastfiles we
65
+ # generate as part of an automated process.
64
66
  require 'excon'
65
67
  url = HOST_URL + '/did_launch?'
66
68
  url += URI.encode_www_form(
67
69
  versions: versions.to_json,
68
70
  steps: launches.to_json,
69
71
  error: @error,
70
- crash: @crash ? @error : nil
72
+ crash: @crash ? @error : nil,
73
+ fastfile_id: ENV["GENERATED_FASTFILE_ID"]
71
74
  )
72
75
 
73
76
  if Helper.is_test? # don't send test data
@@ -1,3 +1,3 @@
1
1
  module FastlaneCore
2
- VERSION = "0.55.0".freeze
2
+ VERSION = "0.55.1".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.55.0
4
+ version: 0.55.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-11-09 00:00:00.000000000 Z
11
+ date: 2016-11-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json
@@ -434,7 +434,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
434
434
  version: '0'
435
435
  requirements: []
436
436
  rubyforge_project:
437
- rubygems_version: 2.6.6
437
+ rubygems_version: 2.2.2
438
438
  signing_key:
439
439
  specification_version: 4
440
440
  summary: Contains all shared code/dependencies of the fastlane.tools