From within a Ruby script, is there a way to pragmatically obtain a list of all expected variable names and function names found in an erubis file?
For instance, how would one determine from the Eruby object that the contains the variable 'name'?
require 'erubis'
source = 'Hello, <%= name %>'
erb = Erubis::Eruby.new(source)
My hackish solution:
Which results in: