fastlane-plugin-lizard 1.2.0 → 1.3.0
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/LICENSE +1 -1
- data/README.md +6 -0
- data/lib/fastlane/plugin/lizard/actions/lizard_action.rb +2 -1
- data/lib/fastlane/plugin/lizard/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 81621e3194b7fa621f902bdb48a4023e3d0d22e35b45a7b4127b246bc1c695a7
|
|
4
|
+
data.tar.gz: 257bd7d1df46752e6b12af1ba7801a9c988de183e9a2a8b97c86444be2c9946f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8bc9111159182e63896d3fde0d36e9bb8409a0c9953da3fe9b8bcf8a4e953449e132b41e52a9d3b38ecca2c67cf3e87b77352cf43fcb87e3f78f12acff9f02a9
|
|
7
|
+
data.tar.gz: f075a6b265dae7892dea5aae8bc0466adf32ddfb1ec178ebc8192843ea778be37b715a1b1da41b7768f78ab447c5b4a92b8ae5fab8e5f715b92345e2016cccd8
|
data/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
The MIT License (MIT)
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2017 Moses Liao <moses.liao.sd@gmail.com>
|
|
3
|
+
Copyright (c) 2017-2019 Moses Liao <moses.liao.sd@gmail.com>
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
data/README.md
CHANGED
|
@@ -41,7 +41,7 @@ module Fastlane
|
|
|
41
41
|
command << "-L #{params[:length]}" if params[:length]
|
|
42
42
|
command << "-a #{params[:arguments]}" if params[:arguments]
|
|
43
43
|
command << "-i #{params[:number]}" if params[:number]
|
|
44
|
-
command << "-x #{
|
|
44
|
+
command << params[:exclude].split(",").map { |x| "-x #{x.strip}" }.join(" ").to_s if params[:exclude]
|
|
45
45
|
command << "-t #{params[:working_threads]}" if params[:working_threads]
|
|
46
46
|
command << "-E #{params[:extensions]}" if params[:extensions]
|
|
47
47
|
command << "-s #{params[:sorting]}" if params[:sorting]
|
|
@@ -121,6 +121,7 @@ module Fastlane
|
|
|
121
121
|
FastlaneCore::ConfigItem.new(key: :exclude,
|
|
122
122
|
env_name: "FL_LIZARD_EXCLUDE",
|
|
123
123
|
description: "Exclude files that match this pattern. * matches everything, ? matches any single character, \"./folder/*\" exclude everything in the folder recursively. Multiple patterns can be specified. Don't forget to add \"\" around the pattern",
|
|
124
|
+
is_string: true,
|
|
124
125
|
optional: true),
|
|
125
126
|
FastlaneCore::ConfigItem.new(key: :working_threads,
|
|
126
127
|
env_name: "FL_LIZARD_WORKING_THREADS",
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-lizard
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Moses Liao
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2019-05-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|