irb: pass strings to factory, not symbols

This commit is contained in:
Adam Vandenberg 2013-06-23 13:05:06 -07:00
parent 3dd2715ec8
commit ad320c96fd

View File

@ -4,7 +4,7 @@ require 'irb'
class Symbol class Symbol
def f def f
Formula.factory(self) Formula.factory(self.to_s)
end end
end end
class String class String