fastlane-plugin-flutter 0.3.15 → 0.3.16

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
  SHA256:
3
- metadata.gz: 8ccdb50ac90f61c7264c19483f1331896f48549b3b609b6e33c30c9f863de172
4
- data.tar.gz: acdace51164709114c4059998a8b8075faf9cfb2cb62f790250492926c8d547a
3
+ metadata.gz: b7b249e9e742cd869590d606287333ce601d6b9551ebe89706fafe0facd861f1
4
+ data.tar.gz: 920b3b9e336d9897801b796c556f31ff4bdac6a41311bedadbade5d9030781cb
5
5
  SHA512:
6
- metadata.gz: 55703c0c3a11be5ba992efc6b1b1eecd8b55f3af463308c5483120283429c9b54067b9b24a5f002a9556f422516681b06a2faa407a0cab29cbcfc55028555fe5
7
- data.tar.gz: 26122ec7b73699bc6a0f2122cbed7f8d1eb5804aec9c92b95c33883bb7378f2793b233d9f1a215ddca00805acac60261717cc90ce4c4cdcd89c4cebcce9b77f4
6
+ metadata.gz: 22fa2f412ea5b995fa97c1390bd311915603c9ef4ac4fcbf7a7f5ef5cf20cada32a2874bbc86c57fab0aa6a114c5b9c3c3917a0ba843ba0b4db1624a4b59d4de
7
+ data.tar.gz: c52bc286a2805211b1f5e60b5998a32d54be7143ecd60fdc07a2a3ea7e1c387eef813563701834bcb6de7721c00904da3742d79ce689f0d7e068a79d12b55239
@@ -15,7 +15,15 @@ module Fastlane
15
15
  def self.flutter_sdk_root
16
16
  @flutter_sdk_root ||= File.expand_path(
17
17
  if ENV.include?('FLUTTER_SDK_ROOT')
18
+ UI.deprecated(
19
+ 'FLUTTER_SDK_ROOT environment variable is deprecated. ' \
20
+ 'To point to a Flutter installation directory, use ' \
21
+ 'FLUTTER_ROOT instead.'
22
+ )
18
23
  ENV['FLUTTER_SDK_ROOT']
24
+ elsif ENV.include?('FLUTTER_ROOT')
25
+ # FLUTTER_ROOT is a standard environment variable from Flutter.
26
+ ENV['FLUTTER_ROOT']
19
27
  elsif flutter_binary = FastlaneCore::CommandExecutor.which('flutter')
20
28
  File.dirname(File.dirname(flutter_binary))
21
29
  else
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Flutter
3
- VERSION = '0.3.15'
3
+ VERSION = '0.3.16'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-flutter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.15
4
+ version: 0.3.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Artem Sheremet
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-11-27 00:00:00.000000000 Z
11
+ date: 2019-12-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry