roku_builder 4.21.6 → 4.22.1
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/roku_builder/plugins/line_inspector.rb +20 -12
- data/lib/roku_builder/plugins/sca-cmd/bin/sca-cmd +18 -21
- data/lib/roku_builder/plugins/sca-cmd/bin/sca-cmd.bat +9 -20
- data/lib/roku_builder/plugins/sca-cmd/lib/sca-cmd.jar +0 -0
- data/lib/roku_builder/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: 4e254e28ba3fddc22a7578a793813f98038f8f6436c44f909900ea71028f233e
|
|
4
|
+
data.tar.gz: 40b2d0b27529a797a34b567354a859d870d496e3fe63b17612c5af1d38342347
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 15a804bfc305022817923fcd6dcb643a2d6d080a8d39d1697ceb51f559669d443255d82c9d187cf17603b7a4083d430612870b70de8e42c052c0a3ec0999ca49
|
|
7
|
+
data.tar.gz: 36bef8ba56d9a908ea4e01e6202f7f5d5b734321cf4b640f52c3c1e129b1e1b85067359a5a8e353932f6c51298a7296a02e18a2094c835581dca20b8a5efb2a5
|
|
@@ -41,18 +41,26 @@ module RokuBuilder
|
|
|
41
41
|
no_comments = file_no_comments.join("")
|
|
42
42
|
file = full_file.join("")
|
|
43
43
|
@inspector_config.each do |line_inspector|
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
44
|
+
unless line_inspector[:disabled]
|
|
45
|
+
to_check = no_comments
|
|
46
|
+
to_check = file if line_inspector[:include_comments]
|
|
47
|
+
match = nil
|
|
48
|
+
start = 0
|
|
49
|
+
loop do
|
|
50
|
+
if line_inspector[:case_sensitive]
|
|
51
|
+
match = /#{line_inspector[:regex]}/.match(to_check, start)
|
|
52
|
+
else
|
|
53
|
+
match = /#{line_inspector[:regex]}/i.match(to_check, start)
|
|
54
|
+
end
|
|
55
|
+
if match
|
|
56
|
+
start = match.end(0)
|
|
57
|
+
line_number = to_check[0..match.begin(0)].split("\n", -1).count - 1
|
|
58
|
+
unless lines_to_ignore.include?(line_number)
|
|
59
|
+
add_warning(inspector: line_inspector, file: file_path, line: line_number, match: match)
|
|
60
|
+
end
|
|
61
|
+
else
|
|
62
|
+
break
|
|
63
|
+
end
|
|
56
64
|
end
|
|
57
65
|
end
|
|
58
66
|
end
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
# you may not use this file except in compliance with the License.
|
|
8
8
|
# You may obtain a copy of the License at
|
|
9
9
|
#
|
|
10
|
-
#
|
|
10
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
|
11
11
|
#
|
|
12
12
|
# Unless required by applicable law or agreed to in writing, software
|
|
13
13
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
@@ -80,7 +80,8 @@ case "`uname`" in
|
|
|
80
80
|
;;
|
|
81
81
|
esac
|
|
82
82
|
|
|
83
|
-
CLASSPATH=$APP_HOME/lib/sca-cmd.jar
|
|
83
|
+
CLASSPATH=$APP_HOME/lib/sca-cmd.jar:$APP_HOME/lib/sca-library.jar:$APP_HOME/lib/commons-cli-1.4.jar:$APP_HOME/lib/jackson-module-jaxb-annotations-2.12.2.jar:$APP_HOME/lib/jackson-databind-2.12.2.jar:$APP_HOME/lib/jackson-annotations-2.12.2.jar:$APP_HOME/lib/jackson-core-2.12.2.jar:$APP_HOME/lib/jackson-dataformat-xml-2.12.2.jar:$APP_HOME/lib/commons-io-2.8.0.jar:$APP_HOME/lib/commons-lang3-3.12.0.jar:$APP_HOME/lib/commons-compress-1.20.jar:$APP_HOME/lib/woodstox-core-6.2.4.jar:$APP_HOME/lib/stax2-api-4.2.1.jar:$APP_HOME/lib/jakarta.xml.bind-api-2.3.2.jar:$APP_HOME/lib/jakarta.activation-api-1.2.1.jar
|
|
84
|
+
|
|
84
85
|
|
|
85
86
|
# Determine the Java command to use to start the JVM.
|
|
86
87
|
if [ -n "$JAVA_HOME" ] ; then
|
|
@@ -125,10 +126,11 @@ if $darwin; then
|
|
|
125
126
|
GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
|
|
126
127
|
fi
|
|
127
128
|
|
|
128
|
-
# For Cygwin, switch paths to Windows format before running java
|
|
129
|
-
if $cygwin ; then
|
|
129
|
+
# For Cygwin or MSYS, switch paths to Windows format before running java
|
|
130
|
+
if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
|
|
130
131
|
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
|
|
131
132
|
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
|
|
133
|
+
|
|
132
134
|
JAVACMD=`cygpath --unix "$JAVACMD"`
|
|
133
135
|
|
|
134
136
|
# We build the pattern for arguments to be converted via cygpath
|
|
@@ -154,19 +156,19 @@ if $cygwin ; then
|
|
|
154
156
|
else
|
|
155
157
|
eval `echo args$i`="\"$arg\""
|
|
156
158
|
fi
|
|
157
|
-
i
|
|
159
|
+
i=`expr $i + 1`
|
|
158
160
|
done
|
|
159
161
|
case $i in
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
162
|
+
0) set -- ;;
|
|
163
|
+
1) set -- "$args0" ;;
|
|
164
|
+
2) set -- "$args0" "$args1" ;;
|
|
165
|
+
3) set -- "$args0" "$args1" "$args2" ;;
|
|
166
|
+
4) set -- "$args0" "$args1" "$args2" "$args3" ;;
|
|
167
|
+
5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
|
|
168
|
+
6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
|
|
169
|
+
7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
|
|
170
|
+
8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
|
|
171
|
+
9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
|
|
170
172
|
esac
|
|
171
173
|
fi
|
|
172
174
|
|
|
@@ -175,14 +177,9 @@ save () {
|
|
|
175
177
|
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
|
|
176
178
|
echo " "
|
|
177
179
|
}
|
|
178
|
-
APP_ARGS
|
|
180
|
+
APP_ARGS=`save "$@"`
|
|
179
181
|
|
|
180
182
|
# Collect all arguments for the java command, following the shell quoting and substitution rules
|
|
181
183
|
eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $SCA_CMD_OPTS -classpath "\"$CLASSPATH\"" com.roku.sca.cmd.CommandLineInterface "$APP_ARGS"
|
|
182
184
|
|
|
183
|
-
# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
|
|
184
|
-
if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
|
|
185
|
-
cd "$(dirname "$0")"
|
|
186
|
-
fi
|
|
187
|
-
|
|
188
185
|
exec "$JAVACMD" "$@"
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
@rem you may not use this file except in compliance with the License.
|
|
6
6
|
@rem You may obtain a copy of the License at
|
|
7
7
|
@rem
|
|
8
|
-
@rem
|
|
8
|
+
@rem https://www.apache.org/licenses/LICENSE-2.0
|
|
9
9
|
@rem
|
|
10
10
|
@rem Unless required by applicable law or agreed to in writing, software
|
|
11
11
|
@rem distributed under the License is distributed on an "AS IS" BASIS,
|
|
@@ -29,6 +29,9 @@ if "%DIRNAME%" == "" set DIRNAME=.
|
|
|
29
29
|
set APP_BASE_NAME=%~n0
|
|
30
30
|
set APP_HOME=%DIRNAME%..
|
|
31
31
|
|
|
32
|
+
@rem Resolve any "." and ".." in APP_HOME to make it shorter.
|
|
33
|
+
for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
|
|
34
|
+
|
|
32
35
|
@rem Add default JVM options here. You can also use JAVA_OPTS and SCA_CMD_OPTS to pass JVM options to this script.
|
|
33
36
|
set DEFAULT_JVM_OPTS=
|
|
34
37
|
|
|
@@ -37,7 +40,7 @@ if defined JAVA_HOME goto findJavaFromJavaHome
|
|
|
37
40
|
|
|
38
41
|
set JAVA_EXE=java.exe
|
|
39
42
|
%JAVA_EXE% -version >NUL 2>&1
|
|
40
|
-
if "%ERRORLEVEL%" == "0" goto
|
|
43
|
+
if "%ERRORLEVEL%" == "0" goto execute
|
|
41
44
|
|
|
42
45
|
echo.
|
|
43
46
|
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
|
@@ -51,7 +54,7 @@ goto fail
|
|
|
51
54
|
set JAVA_HOME=%JAVA_HOME:"=%
|
|
52
55
|
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
|
|
53
56
|
|
|
54
|
-
if exist "%JAVA_EXE%" goto
|
|
57
|
+
if exist "%JAVA_EXE%" goto execute
|
|
55
58
|
|
|
56
59
|
echo.
|
|
57
60
|
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
|
|
@@ -61,28 +64,14 @@ echo location of your Java installation.
|
|
|
61
64
|
|
|
62
65
|
goto fail
|
|
63
66
|
|
|
64
|
-
:init
|
|
65
|
-
@rem Get command-line arguments, handling Windows variants
|
|
66
|
-
|
|
67
|
-
if not "%OS%" == "Windows_NT" goto win9xME_args
|
|
68
|
-
|
|
69
|
-
:win9xME_args
|
|
70
|
-
@rem Slurp the command line arguments.
|
|
71
|
-
set CMD_LINE_ARGS=
|
|
72
|
-
set _SKIP=2
|
|
73
|
-
|
|
74
|
-
:win9xME_args_slurp
|
|
75
|
-
if "x%~1" == "x" goto execute
|
|
76
|
-
|
|
77
|
-
set CMD_LINE_ARGS=%*
|
|
78
|
-
|
|
79
67
|
:execute
|
|
80
68
|
@rem Setup the command line
|
|
81
69
|
|
|
82
|
-
set CLASSPATH=%APP_HOME%\lib\sca-cmd.jar
|
|
70
|
+
set CLASSPATH=%APP_HOME%\lib\sca-cmd.jar;%APP_HOME%\lib\sca-library.jar;%APP_HOME%\lib\commons-cli-1.4.jar;%APP_HOME%\lib\jackson-module-jaxb-annotations-2.12.2.jar;%APP_HOME%\lib\jackson-databind-2.12.2.jar;%APP_HOME%\lib\jackson-annotations-2.12.2.jar;%APP_HOME%\lib\jackson-core-2.12.2.jar;%APP_HOME%\lib\jackson-dataformat-xml-2.12.2.jar;%APP_HOME%\lib\commons-io-2.8.0.jar;%APP_HOME%\lib\commons-lang3-3.12.0.jar;%APP_HOME%\lib\commons-compress-1.20.jar;%APP_HOME%\lib\woodstox-core-6.2.4.jar;%APP_HOME%\lib\stax2-api-4.2.1.jar;%APP_HOME%\lib\jakarta.xml.bind-api-2.3.2.jar;%APP_HOME%\lib\jakarta.activation-api-1.2.1.jar
|
|
71
|
+
|
|
83
72
|
|
|
84
73
|
@rem Execute sca-cmd
|
|
85
|
-
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %SCA_CMD_OPTS% -classpath "%CLASSPATH%" com.roku.sca.cmd.CommandLineInterface
|
|
74
|
+
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %SCA_CMD_OPTS% -classpath "%CLASSPATH%" com.roku.sca.cmd.CommandLineInterface %*
|
|
86
75
|
|
|
87
76
|
:end
|
|
88
77
|
@rem End local scope for the variables with windows NT shell
|
|
Binary file
|
data/lib/roku_builder/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: roku_builder
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.
|
|
4
|
+
version: 4.22.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- greeneca
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-04-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubyzip
|