fastlane-plugin-flutter 0.5.0 → 0.6.0
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c0484e466e397f4bacea7891de3becea2e85c5b4bf04684f06a167788d57735b
|
4
|
+
data.tar.gz: f9996d24c9a41cc4aec9ce774c41ce8a01e8e1055c3e6a153bd23c08dc701d98
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7d580e8ed5bb91a9ad0d3ae87657757ce74b88adfb3eea8dff96bd361c48d69b326913c233339274a7869141d839fe3690f42c24bf74bfa408afdcb2f4feb08a
|
7
|
+
data.tar.gz: 731f76c07eb9715b79f6705826204fe580446069b46d85da17c9b8ff14ed5ba80ea76e4cb9622bced34a6d5090db69e0f5bd55a6cd2f0164cb9e8221c1dca29c
|
@@ -14,7 +14,10 @@ module Fastlane
|
|
14
14
|
|
15
15
|
def self.flutter_sdk_root
|
16
16
|
@flutter_sdk_root ||= File.expand_path(
|
17
|
-
if
|
17
|
+
if File.executable?(File.join(Dir.pwd, '.flutter', 'bin', 'flutter'))
|
18
|
+
# Support flutterw and compatible projects.
|
19
|
+
File.join(Dir.pwd, '.flutter')
|
20
|
+
elsif ENV.include?('FLUTTER_SDK_ROOT')
|
18
21
|
UI.deprecated(
|
19
22
|
'FLUTTER_SDK_ROOT environment variable is deprecated. ' \
|
20
23
|
'To point to a Flutter installation directory, use ' \
|
@@ -27,6 +30,7 @@ module Fastlane
|
|
27
30
|
elsif flutter_binary = FastlaneCore::CommandExecutor.which('flutter')
|
28
31
|
File.dirname(File.dirname(flutter_binary))
|
29
32
|
else
|
33
|
+
# Where we'd prefer to install flutter.
|
30
34
|
File.join(Dir.pwd, 'vendor', 'flutter')
|
31
35
|
end
|
32
36
|
)
|
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.
|
4
|
+
version: 0.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Artem Sheremet
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-05-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pry
|
@@ -188,7 +188,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
188
188
|
- !ruby/object:Gem::Version
|
189
189
|
version: '0'
|
190
190
|
requirements: []
|
191
|
-
|
191
|
+
rubyforge_project:
|
192
|
+
rubygems_version: 2.7.6.2
|
192
193
|
signing_key:
|
193
194
|
specification_version: 4
|
194
195
|
summary: Flutter actions plugin for Fastlane
|