flappy-cli 0.3.1 → 0.3.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 +4 -4
- data/lib/flappy/cli.rb +2 -2
- data/lib/flappy/util/build_apk.rb +1 -1
- data/lib/flappy/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: aa0179e6d12baf25f52b775ba357c9066aeb9a7b2b32004369eb81a36e374661
|
|
4
|
+
data.tar.gz: 16024d7c570824eab7ec5783b4f0ddeb0c08dadf4c5661fa4197f0a6f82aa176
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 50214aff16f49fe073011092b583b3b1556ed03448d41d2bef5672643391e8557cb2e5ad35b57af97966668b2f0ffcb9053505845d9eeacc70a6103d8f6aee12
|
|
7
|
+
data.tar.gz: de5e2c97ebf9ff7a845c610071dff1ce12704703b03afe122896c4b4ef92afe57c500b5ad304abd24ff5715778201316fb8b007c558c2a11ee96f86234386a68
|
data/lib/flappy/cli.rb
CHANGED
|
@@ -27,8 +27,8 @@ module Flappy
|
|
|
27
27
|
method_option :branch, type: :string, aliases: '-B', desc: 'Set branch if project is a git repo, the default is `master`'
|
|
28
28
|
method_option :output, type: :string, aliases: '-o', desc: 'APK output path, the default is: BUILD_DIR/build/outputs/apk'
|
|
29
29
|
method_option :publish, type: :boolean, aliases: '-p', desc: 'true/false if publish to fir.im'
|
|
30
|
-
method_option :
|
|
31
|
-
method_option :
|
|
30
|
+
method_option :productFlavor, type: :string, aliases: '-f', desc: 'Set flavor if have productFlavors'
|
|
31
|
+
method_option :buildType, type: :boolean, aliases: '-d', desc: 'Set buildType if debug or release', default: false
|
|
32
32
|
method_option :short, type: :string, aliases: '-s', desc: 'Set custom short link if publish to fir.im'
|
|
33
33
|
method_option :name, type: :string, aliases: '-n', desc: 'Set custom apk name when builded'
|
|
34
34
|
method_option :changelog, type: :string, aliases: '-c', desc: 'Set changelog if publish to fir.im, support string/file'
|
data/lib/flappy/version.rb
CHANGED