Skip to content

Commit 2e24a4a

Browse files
committed
Fix Kernel#eval with non-ruby shebang
* Fixes #3623 * Applies fix from ruby/prism#2952
1 parent 7406817 commit 2e24a4a

File tree

3 files changed

+22
-1
lines changed

3 files changed

+22
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Bug fixes:
77
Compatibility:
88

99
* Fix `Module#include` so a module included into a reopened nested module is added into an ancestors chain (#3570, @andrykonchin).
10+
* Fix `Kernel#eval` to ignore shebang with non-Ruby interpreter (#3623, @andrykonchin).
1011

1112
Performance:
1213

spec/ruby/core/kernel/eval_spec.rb

+20
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,26 @@ class EvalSpecs
274274
eval("").should == nil
275275
end
276276

277+
context "with shebang" do
278+
it "ignores shebang with ruby interpreter" do
279+
pid = eval(<<~CODE.b)
280+
#!/usr/bin/env ruby
281+
Process.pid
282+
CODE
283+
284+
pid.should == Process.pid
285+
end
286+
287+
it "ignores shebang with non-ruby interpreter" do
288+
pid = eval(<<~CODE.b)
289+
#!/usr/bin/env puma
290+
Process.pid
291+
CODE
292+
293+
pid.should == Process.pid
294+
end
295+
end
296+
277297
# See language/magic_comment_spec.rb for more magic comments specs
278298
describe "with a magic encoding comment" do
279299
it "uses the magic comment encoding for the encoding of literal strings" do

src/main/c/yarp/src/prism.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -21467,7 +21467,7 @@ pm_parser_init(pm_parser_t *parser, const uint8_t *source, size_t size, const pm
2146721467
pm_parser_warn_shebang_carriage_return(parser, parser->start, length);
2146821468
if (newline != NULL) parser->encoding_comment_start = newline + 1;
2146921469
search_shebang = false;
21470-
} else {
21470+
} else if (!parser->parsing_eval) { // See https://github.com/ruby/prism/pull/2952
2147121471
search_shebang = true;
2147221472
}
2147321473
}

0 commit comments

Comments
 (0)