fastlane 2.0.1 → 2.0.2

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: e658e0ca4108eda7f0f994302323914d663b9508
4
- data.tar.gz: ab3ffb7f5e4d6f25109eeba9dfeb1c3dc5ad8c01
3
+ metadata.gz: 72941de05ecbf725dccad28b7f91be2ca904314e
4
+ data.tar.gz: 2ec02b675d4ecbc4ffce7c49f43651530b453930
5
5
  SHA512:
6
- metadata.gz: 11546db502a7f9a94d95cefa4f016c40471fc716b869afa987195f6dad2b8511c16c1671a1149984a60f5c84e69e191c2e62685f35e48afce113f816abd01935
7
- data.tar.gz: e4ffdd7a8deeefb18f6541aebe19b4ba9c31b29e3c52d7643caf3e9f90e650198d762472dbc479d1c453114cf04d48990043e835dd9a7792eace285d359c6f49
6
+ metadata.gz: 0bbb2181d4ecf87d92fb6b51b59e6aecef61cf5e6e2c4823ff31a79a0cc1aa60c095a4c57eadd60ebb7763e925292c1e3148d50dac9d734e770137f901990b6e
7
+ data.tar.gz: f50208ede3ccccf75a5087038878614bbc473da6885b081ed352e95a9a4dffe20ed0aaf29c0cafc38e552c48ace2ee8cb195516ffd088247e58e8a27fe59d261
@@ -1,4 +1,5 @@
1
1
  require 'commander'
2
+ require 'fastlane/version'
2
3
 
3
4
  HighLine.track_eof = false
4
5
 
@@ -1,3 +1,4 @@
1
+ require 'fastlane/version'
1
2
  require 'credentials_manager/account_manager'
2
3
  require 'credentials_manager/cli'
3
4
  require 'credentials_manager/appfile_config'
@@ -1,5 +1,6 @@
1
1
  require 'commander'
2
2
  require 'deliver/download_screenshots'
3
+ require 'fastlane/version'
3
4
 
4
5
  HighLine.track_eof = false
5
6
 
@@ -182,7 +182,7 @@ module Fastlane
182
182
  optional: true),
183
183
  FastlaneCore::ConfigItem.new(key: :public_identifier,
184
184
  env_name: "FL_HOCKEY_PUBLIC_IDENTIFIER",
185
- description: "Public identifier of the app you are targeting, usually you won't need this value",
185
+ description: "App id of the app you are targeting, usually you won't need this value. Required, if `upload_dsm_only` set to `true`",
186
186
  optional: true),
187
187
  FastlaneCore::ConfigItem.new(key: :commit_sha,
188
188
  env_name: "FL_HOCKEY_COMMIT_SHA",
@@ -1,4 +1,4 @@
1
1
  module Fastlane
2
- VERSION = '2.0.1'.freeze
2
+ VERSION = '2.0.2'.freeze
3
3
  DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
4
4
  end
@@ -1,4 +1,5 @@
1
1
  require 'json'
2
+ require 'fastlane/version'
2
3
 
3
4
  # Ruby monkey-patches - should be before almost all else
4
5
  require 'fastlane_core/core_ext/string'
@@ -1,4 +1,5 @@
1
1
  require 'commander'
2
+ require 'fastlane/version'
2
3
 
3
4
  module FastlaneCore
4
5
  class CommanderGenerator
@@ -146,6 +146,7 @@ module FastlaneCore
146
146
  end
147
147
 
148
148
  def self.determine_version(name)
149
+ require 'fastlane'
149
150
  return Fastlane::VERSION if Fastlane::ActionsList.find_action_named(name.to_s)
150
151
 
151
152
  begin
@@ -1,4 +1,5 @@
1
1
  require 'commander'
2
+ require 'fastlane/version'
2
3
 
3
4
  HighLine.track_eof = false
4
5
 
@@ -1,4 +1,5 @@
1
1
  require 'commander'
2
+ require 'fastlane/version'
2
3
 
3
4
  HighLine.track_eof = false
4
5
 
@@ -1,4 +1,5 @@
1
1
  require 'commander'
2
+ require 'fastlane/version'
2
3
 
3
4
  HighLine.track_eof = false
4
5
 
@@ -1,4 +1,5 @@
1
1
  require 'commander'
2
+ require 'fastlane/version'
2
3
 
3
4
  HighLine.track_eof = false
4
5
 
@@ -1,4 +1,5 @@
1
1
  require 'commander'
2
+ require 'fastlane/version'
2
3
 
3
4
  HighLine.track_eof = false
4
5
 
@@ -1,4 +1,5 @@
1
1
  require 'commander'
2
+ require 'fastlane/version'
2
3
 
3
4
  HighLine.track_eof = false
4
5
 
@@ -1,4 +1,5 @@
1
1
  require 'commander'
2
+ require 'fastlane/version'
2
3
 
3
4
  HighLine.track_eof = false
4
5
 
@@ -64,7 +64,7 @@ module Spaceship
64
64
  def find(identifier, mac: false)
65
65
  all.find do |app|
66
66
  (app.apple_id == identifier.to_s || app.bundle_id == identifier) &&
67
- app.version_sets.any? { |v| v.platform == (mac ? "osx" : "ios") }
67
+ app.version_sets.any? { |v| (mac ? ["osx"] : ["ios", "appletvos"]).include?(v.platform) }
68
68
  end
69
69
  end
70
70
 
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.0.1
4
+ version: 2.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause