Given a Proc object, is it possible to look at the code inside it?
For example:
p = Proc.new{test = 0}
What I need is for some way to get the string "test = 0" from a Proc object that has already been created.
|
Given a Proc object, is it possible to look at the code inside it? For example:
What I need is for some way to get the string "test = 0" from a Proc object that has already been created.
| |||
|
feedback
|
|
You can use the ruby2ruby library:
You can also turn this string representation of the proc back to ruby and call it:
More about ruby2ruby in this video: Hacking with ruby2ruby. | ||||
|
feedback
|
|
In case you're using Ruby 1.9, you can use the sourcify gem
| |||
|
feedback
|
|
I think you could use ParseTree for this, it also seems that support for Ruby 1.9.2 is getting close. | |||
|
feedback
|
|
Use | ||||
|
feedback
|