diff options
author | Hiroshi SHIBATA <[email protected]> | 2022-08-26 11:10:15 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2022-08-26 12:15:47 +0900 |
commit | 8dfc077f7016715f33b4818ad3e6770d557356a1 (patch) | |
tree | 5a0af3c45172c84162167b7d6755d8731f486e5d /libexec | |
parent | bd1b1eeb0e528da983e76216d459a1d61aa026cb (diff) |
Added syntax_suggest cli and resolve failing exapmle with it
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/6287
Diffstat (limited to 'libexec')
-rwxr-xr-x | libexec/syntax_suggest | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libexec/syntax_suggest b/libexec/syntax_suggest new file mode 100755 index 0000000000..e4a0b0b658 --- /dev/null +++ b/libexec/syntax_suggest @@ -0,0 +1,7 @@ +#!/usr/bin/env ruby + +require_relative "../lib/syntax_suggest/api" + +SyntaxSuggest::Cli.new( + argv: ARGV +).call |