We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1748062 commit 41beabdCopy full SHA for 41beabd
lib/iruby/kernel.rb
@@ -218,7 +218,8 @@ def execute_request(msg)
218
end
219
220
events.trigger(:post_execute)
221
- events.trigger(:post_run_cell, result) unless silent
+ # **{} is for Ruby2.7. Gnuplot#to_hash returns an Array.
222
+ events.trigger(:post_run_cell, result, **{}) unless silent
223
224
@session.send(:reply, :execute_reply, content)
225
0 commit comments