fastlane-plugin-flutter 0.3.8 → 0.3.9
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 03e6c34cff77a8ccaa95d62131f1fb2887838b42
|
|
4
|
+
data.tar.gz: 763dfcc8f9a44ba25416106956ed8b2851f1d6e5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1f790b62d9b9c84117922245a4aa24b0376de88c0c1fe36990db3383fe467f35427939e7541c333fef37deebaa69efcb714a319339a317c4cb14adc328f98ef4
|
|
7
|
+
data.tar.gz: be9a33845bb8c254a08c2f36be23cf06de731dcf86c4916a09ee22515793f21ed0ebda74e431244f84ab320ba8ffa5b2be5e70e4831498f10f76fccaf603228a
|
data/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# flutter plugin
|
|
2
2
|
|
|
3
3
|
[](https://badge.fury.io/rb/fastlane-plugin-flutter)
|
|
4
|
-
[](https://github.com/dotdoom/fastlane-plugin-flutter/actions?workflow=end-to-end+test)
|
|
5
5
|
[](https://rubygems.org/gems/fastlane-plugin-flutter)
|
|
6
6
|
|
|
7
7
|
## Getting Started
|
|
@@ -50,6 +50,8 @@ module Fastlane
|
|
|
50
50
|
build_args.push('--build-name', build_name.to_s)
|
|
51
51
|
end
|
|
52
52
|
|
|
53
|
+
build_args += params[:build_args] || []
|
|
54
|
+
|
|
53
55
|
Helper::FlutterHelper.flutter('build', *build_args) do |status, res|
|
|
54
56
|
if status.success?
|
|
55
57
|
if res =~ /^Built (.*?)(:? \([^)]*\))?\.$/
|
|
@@ -120,6 +122,12 @@ module Fastlane
|
|
|
120
122
|
DESCRIPTION
|
|
121
123
|
optional: true,
|
|
122
124
|
),
|
|
125
|
+
FastlaneCore::ConfigItem.new(
|
|
126
|
+
key: :build_args,
|
|
127
|
+
description: 'An array of extra arguments for "flutter build"',
|
|
128
|
+
optional: true,
|
|
129
|
+
type: Array,
|
|
130
|
+
),
|
|
123
131
|
]
|
|
124
132
|
end
|
|
125
133
|
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.
|
|
4
|
+
version: 0.3.9
|
|
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-10-
|
|
11
|
+
date: 2019-10-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pry
|