Revisions

gist: 95842 Download_button fork
public
Public Clone URL: git://gist.github.com/95842.git
Text only
1
2
3
4
5
6
7
8
def create_from_string(klass, string = "")
  # like calling String.new or something because
  # klass is a variable representing the class you passed in
  klass.new(string)
end
 
x = create_from_string(String, "dude")
y = create_from_string(Regexp, "wat")