diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-12 19:09:37 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-12 19:09:37 -0500 |
| commit | b590c8d7572b727d565cc0b8ff660d43569845de (patch) | |
| tree | 06f7a4102ea4e845df8b66660f252920d52952f9 /dev-ruby/method_source/files | |
| parent | 24f9cbfc4c34fdb6a6e03311674414e881ceab47 (diff) | |
| download | baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.tar.gz baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.tar.xz baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.zip | |
Adding metadata
Diffstat (limited to 'dev-ruby/method_source/files')
| -rw-r--r-- | dev-ruby/method_source/files/method_source-1.1.0-prism.patch | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/dev-ruby/method_source/files/method_source-1.1.0-prism.patch b/dev-ruby/method_source/files/method_source-1.1.0-prism.patch new file mode 100644 index 000000000000..5955bff3d744 --- /dev/null +++ b/dev-ruby/method_source/files/method_source-1.1.0-prism.patch @@ -0,0 +1,37 @@ +From 854c58f950559959d8e1e1fc0c186fda2867512e Mon Sep 17 00:00:00 2001 +From: Kevin Newton <kddnewton@gmail.com> +Date: Wed, 25 Sep 2024 15:08:35 -0400 +Subject: [PATCH] Update error message expectations to work on MRI with Prism + +--- + lib/method_source/code_helpers.rb | 2 +- + spec/method_source/code_helpers_spec.rb | 3 ++- + 2 files changed, 3 insertions(+), 2 deletions(-) + +diff --git a/lib/method_source/code_helpers.rb b/lib/method_source/code_helpers.rb +index 4185c18..9b4c68f 100644 +--- a/lib/method_source/code_helpers.rb ++++ b/lib/method_source/code_helpers.rb +@@ -125,7 +125,7 @@ module IncompleteExpression + GENERIC_REGEXPS = [ + /unexpected (\$end|end-of-file|end-of-input|END_OF_FILE)/, # mri, jruby, ruby-2.0, ironruby + /embedded document meets end of file/, # =begin +- /unterminated (quoted string|string|regexp|list) meets end of file/, # "quoted string" is ironruby ++ /unterminated (quoted string|string|regexp|list)( meets end of file|;)/, # "quoted string" is ironruby + /can't find string ".*" anywhere before EOF/, # rbx and jruby + /missing 'end' for/, /expecting kWHEN/ # rbx + ] +diff --git a/spec/method_source/code_helpers_spec.rb b/spec/method_source/code_helpers_spec.rb +index 287ff89..96f86d3 100644 +--- a/spec/method_source/code_helpers_spec.rb ++++ b/spec/method_source/code_helpers_spec.rb +@@ -36,7 +36,8 @@ + ]).compact.each do |foo| + it "should raise an error on invalid syntax like #{foo.inspect}" do + expect { +- @tester.complete_expression?(foo.join("\n")) ++ result = @tester.complete_expression?(foo.join("\n")) ++ raise SyntaxError if !result && foo == ["def", "method(1"] # prism on mri + }.to raise_error(SyntaxError) + end + end |
