How do you access the symbol table in Ruby? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T22:33:06Z http://stackoverflow.com/feeds/question/503583 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/503583/how-do-you-access-the-symbol-table-in-ruby 3 How do you access the symbol table in Ruby? Jonathan Tran 2009-02-02T15:26:22Z 2009-02-02T18:21:14Z <p>Is there a way to access everything in the symbol table in Ruby? I want to be able to serialize or otherwise save the current state of a run of a program. To do this, it seems I need to be able to iterate over all the variables in scope.</p> http://stackoverflow.com/questions/503583/how-do-you-access-the-symbol-table-in-ruby/504028#504028 0 Answer by Allyn for How do you access the symbol table in Ruby? Allyn 2009-02-02T17:20:49Z 2009-02-02T17:20:49Z <p>I don't believe there is, but you could always use <a href="http://www.ruby-doc.org/core-1.8.7/classes/Marshal.html" rel="nofollow">marshall</a> dump/load. </p> http://stackoverflow.com/questions/503583/how-do-you-access-the-symbol-table-in-ruby/504051#504051 1 Answer by andHapp for How do you access the symbol table in Ruby? andHapp 2009-02-02T17:26:22Z 2009-02-02T17:26:22Z <p>If I have understood your question properly - that you would like to see all the symbols in your program then the following should do the trick:</p> <p>puts Symbol.all_symbols.inspect</p> <p>The “all_symbols” class method will return an Array of every Symbol currently in the program.</p> http://stackoverflow.com/questions/503583/how-do-you-access-the-symbol-table-in-ruby/504077#504077 4 Answer by Geo for How do you access the symbol table in Ruby? Geo 2009-02-02T17:32:29Z 2009-02-02T17:38:27Z <p>I think he comes from a perl background , and that he would like to obtain all the variables defined in a script and serialize them . This way , when he'll load the file , he'll get them back . I'm still searching about how to get a list of the variables , but serialization will be made using Marshal.dump and reading them back will be made with Marshal.load . I'll edit the post once I find out how to get a list of all defined variables .</p> <p>EDIT : found it!</p> <p>You can get a list of all variables by calling these methods :</p> <pre> <code>local_variables</code> <code>global_variables</code> </pre> <p>And if you haven't already got your serialization code , I would suggest something like this:</p> <ul> <li>create a class or a Struct instance that holds a variable name and the value of the variable and add them in an array :</li> </ul> <pre> <code> local_variables.each {|var| my_array &lt&lt MyVarObject.new(var,eval(var)) } # eval is used to get the value of the variable </code> </pre> <p>and then serialize the array :</p> <pre><code> data = Marshal.dump(my_array) File.open("myfile.ser","w") do |file| file.puts data end</code></pre>