|
Post Made Community Wiki by Community♦
|
||||
|
|
||||
|
9 | Added note about updated answer which is acceptable. | ||
|
I want to be able to write a lambda/Proc in my Ruby code, serialize it so that I can write it to disk, and then execute the lambda later. Sort of like...
Later, in a separate run of the Ruby interpreter, I want to be able to say...
Marshal.dump does not work for Procs. I know Perl has Data::Dump::Streamer, and in Lisp this is trivial. But is there a way to do it in Ruby? In other words, what would be the implementation of Edit: My answer below is nice, but it does not close over free variables (like
... the string output does not include a definition for Edit 2: I updated my answer to incorporate serializing local variables. This seems acceptable. |
||||
|
8 | Added more details explaining why solution is not sufficient. | ||
|
I want to be able to write a lambda/Proc in my Ruby code, serialize it so that I can write it to disk, and then execute the lambda later. Sort of like...
Later, in a separate run of the Ruby interpreter, I want to be able to say...
Marshal.dump does not work for Procs. I know Perl has Data::Dump::Streamer, and in Lisp this is trivial. But is there a way to do it in Ruby? In other words, what would be the implementation of Edit: My answer below is nice, but it does not close over free variables (like
... the string output does not include a definition for |
||||
|
7 | Added note about my answer not closing over free variables. | ||
|
6 | Fixed missing colon | ||
|
5 |
edited tags
|
||
|
4 | Added the fact that Marshal.dump does not work. | ||
|
3 | Changed link from Data::Dumper to Data::Dump::Streamer and added Proc to help searching | ||
|
2 |
edited tags
|
||
|
1 |
|
||
