File tree Expand file tree Collapse file tree 5 files changed +43
-0
lines changed
Expand file tree Collapse file tree 5 files changed +43
-0
lines changed Original file line number Diff line number Diff line change 1+ name : " ruby"
2+ display_name : " Ruby"
3+ version : 0.1
4+ column_kind : " utf8"
5+ file_types :
6+ - name : ruby
7+ display_name : Ruby files
8+ extensions :
9+ - .rb
Original file line number Diff line number Diff line change 1+ @ echo off
2+
3+ type NUL && " %CODEQL_DIST% \codeql.exe" database index-files ^
4+ --include-extension=.rb ^
5+ --size-limit=5m ^
6+ --language=ruby ^
7+ " %CODEQL_EXTRACTOR_RUBY_WIP_DATABASE% "
8+
9+ exit /b %ERRORLEVEL%
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+
3+ set -eu
4+
5+ exec " ${CODEQL_DIST} /codeql" database index-files \
6+ --include-extension=.rb \
7+ --size-limit=5m \
8+ --language=ruby \
9+ " $CODEQL_EXTRACTOR_RUBY_WIP_DATABASE "
Original file line number Diff line number Diff line change 1+ @ echo off
2+
3+ type NUL && " %CODEQL_EXTRACTOR_RUBY_ROOT% \tools\win64\extractor.exe" ^
4+ --file-list " %1 " ^
5+ --source-archive-dir " %CODEQL_EXTRACTOR_RUBY_SOURCE_ARCHIVE_DIR% " ^
6+ --output-dir " %CODEQL_EXTRACTOR_RUBY_TRAP_DIR% "
7+
8+ exit /b %ERRORLEVEL%
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+
3+ set -eu
4+
5+ exec " ${CODEQL_EXTRACTOR_RUBY_ROOT} /tools/${CODEQL_PLATFORM} /extractor" \
6+ --file-list " $1 " \
7+ --source-archive-dir " $CODEQL_EXTRACTOR_RUBY_SOURCE_ARCHIVE_DIR " \
8+ --output-dir " $CODEQL_EXTRACTOR_RUBY_TRAP_DIR "
You can’t perform that action at this time.
0 commit comments