File tree 4 files changed +4
-4
lines changed
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 50
50
if : ${{ matrix.os == 'ubuntu-latest' }}
51
51
with :
52
52
name : ruby_ast.qll
53
- path : ruby_ast .qll
53
+ path : ql/src/codeql_ruby/ast .qll
54
54
- uses : actions/upload-artifact@v2
55
55
with :
56
56
name : extractor-${{ matrix.os }}
Original file line number Diff line number Diff line change @@ -12,11 +12,11 @@ cargo build --release
12
12
13
13
## Generating the database schema and QL library
14
14
15
- The generated ` ruby.dbscheme ` and ` ruby_ast .qll` files are included in the repository, but they can be re-generated as follows:
15
+ The generated ` ql/src/ ruby.dbscheme` and ` ql/src/codeql_ruby/ast .qll` files are included in the repository, but they can be re-generated as follows:
16
16
17
17
``` bash
18
18
# Run the generator
19
19
cargo run --release -p ruby-generator
20
20
# Then auto-format the QL library
21
- codeql query format -i ruby_ast .qll
21
+ codeql query format -i ql/src/codeql_ruby/ast .qll
22
22
```
Original file line number Diff line number Diff line change @@ -287,7 +287,7 @@ fn main() {
287
287
name : "Ruby" . to_string ( ) ,
288
288
node_types : tree_sitter_ruby:: NODE_TYPES ,
289
289
dbscheme_path : PathBuf :: from ( "ql/src/ruby.dbscheme" ) ,
290
- ql_library_path : PathBuf :: from ( "ruby_ast .qll" ) ,
290
+ ql_library_path : PathBuf :: from ( "ql/src/codeql_ruby/ast .qll" ) ,
291
291
} ;
292
292
match node_types:: read_node_types_str ( & ruby. node_types ) {
293
293
Err ( e) => {
File renamed without changes.
You can’t perform that action at this time.
0 commit comments