fastlane-plugin-lizard 1.3.1 → 1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4f6339231c5701ad2442c2fe1a48e773c31cb04f2668c6ba3e243281627fc3e8
4
- data.tar.gz: d3be8c0190f039b4679b6fd29f8007426c68cc62b370c024699682574b59370e
3
+ metadata.gz: '069660b3c1baf8f8a11f169b97842fc34d6b47cb8aff88471326d94a4123f1a8'
4
+ data.tar.gz: 61968a56a42aceb539ac461c7d5b476760e6e7a7f8cb76fae48ae9fa13015837
5
5
  SHA512:
6
- metadata.gz: ebe380f56c5b9b45035ffe601d1e8e0657a4503f9a71f60acaa1afacb77ee065fe9e9b2b376465e37b8a02ac3e162919bbded29613754c2351bfa9bf8eb032f2
7
- data.tar.gz: bdee62774f301919bf0b03a0a9ba3bb413737dad2f3f268f1e5e1b210df5c77bd4761c73efc5fa61f7fe6b1836a7377c78a96eb94239ecefe15b0bd47e7b7a28
6
+ metadata.gz: 241ac7fb303fe436f9ec02581e8aa2cfc938d8967984a8499f2a1996fdf6df19def17b2c7edcb8f85bfcbbcf3abcd1f406c27e81779bb5718201e508f5edd8d7
7
+ data.tar.gz: 7a9d2627eda5b4c58c7038040a5f38750e8ab0066ef14bcc61f5099849ef0a596f46db1eb68b1ffe68cc92b408b8cb0062d87d5aa5b78f8f0f94f22580aab0de
@@ -114,46 +114,48 @@ module Fastlane
114
114
  description: "Limit for number of parameters",
115
115
  optional: true),
116
116
  FastlaneCore::ConfigItem.new(key: :number,
117
- env_name: "FL_LIZARD_NUMBER",
118
- description: "If the number of warnings is equal or less than the number, the tool will exit normally, otherwise it will generate error. Useful in makefile for legacy code",
119
- is_string: false,
120
- optional: true),
117
+ env_name: "FL_LIZARD_NUMBER",
118
+ description: "If the number of warnings is equal or less than the number, the tool will exit normally, otherwise it will generate error. Useful in makefile for legacy code",
119
+ is_string: false,
120
+ optional: true),
121
121
  FastlaneCore::ConfigItem.new(key: :exclude,
122
- env_name: "FL_LIZARD_EXCLUDE",
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,
125
- optional: true),
122
+ env_name: "FL_LIZARD_EXCLUDE",
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,
125
+ optional: true),
126
126
  FastlaneCore::ConfigItem.new(key: :working_threads,
127
127
  env_name: "FL_LIZARD_WORKING_THREADS",
128
128
  description: "Number of working threads. A bigger number can fully utilize the CPU and faster",
129
129
  optional: true,
130
130
  is_string: false),
131
131
  FastlaneCore::ConfigItem.new(key: :extensions,
132
- env_name: "FL_LIZARD_EXTENSIONS",
133
- description: "User the extensions. The available extensions are: -Ecpre: it will ignore code in the #else branch. -Ewordcount: count word frequencies and generate tag cloud. -Eoutside: include the global code as one function",
134
- is_string: true,
135
- optional: true),
132
+ env_name: "FL_LIZARD_EXTENSIONS",
133
+ description: "User the extensions. The available extensions are: -Ecpre: it will ignore code in the #else branch. -Ewordcount: count word frequencies and generate tag cloud. -Eoutside: include the global code as one function",
134
+ is_string: true,
135
+ optional: true),
136
136
  FastlaneCore::ConfigItem.new(key: :sorting,
137
- env_name: "FL_LIZARD_SORTING",
138
- description: "Sort the warning with field. The field can be nloc, cyclomatic_complexity, token_count, parameter_count, etc. Or an customized file",
139
- optional: true),
137
+ env_name: "FL_LIZARD_SORTING",
138
+ description: "Sort the warning with field. The field can be nloc, cyclomatic_complexity, token_count, parameter_count, etc. Or an customized file",
139
+ optional: true),
140
140
  FastlaneCore::ConfigItem.new(key: :whitelist,
141
- env_name: "FL_LIZARD_WHITELIST",
142
- description: "The path and file name to the whitelist file",
143
- optional: true),
141
+ env_name: "FL_LIZARD_WHITELIST",
142
+ description: "The path and file name to the whitelist file",
143
+ optional: true),
144
144
  FastlaneCore::ConfigItem.new(key: :report_file,
145
145
  env_name: "FL_LIZARD_REPORT_FILE",
146
146
  description: "The folder/file which lizard output to",
147
147
  optional: true),
148
148
  FastlaneCore::ConfigItem.new(key: :ignore_exit_status,
149
- description: "Ignore the exit status of the lizard command, so that serious violations don't fail the build (true/false)",
150
- default_value: false,
151
- is_string: false,
152
- optional: true),
149
+ env_name: "FL_LIZARD_IGNORE_EXIT_STATUS",
150
+ description: "Ignore the exit status of the lizard command, so that serious violations don't fail the build (true/false)",
151
+ default_value: false,
152
+ is_string: false,
153
+ optional: true),
153
154
  FastlaneCore::ConfigItem.new(key: :executable,
154
- description: "Path to the `lizard.py` executable on your machine",
155
- is_string: true,
156
- optional: true)
155
+ env_name: "FL_LIZARD_EXECUTABLE",
156
+ description: "Path to the `lizard.py` executable on your machine",
157
+ is_string: true,
158
+ optional: true)
157
159
  ]
158
160
  end
159
161
 
@@ -1,6 +1,6 @@
1
1
  module Fastlane
2
2
  module Lizard
3
- VERSION = "1.3.1"
3
+ VERSION = "1.3.2"
4
4
  CLI_VERSION = "1.14.10"
5
5
  end
6
6
  end
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.3.1
4
+ version: 1.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Moses Liao
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-02-13 00:00:00.000000000 Z
11
+ date: 2020-05-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler