I discovered today that my ruby console on rails is no longer working. (I don't work out of the console all that often, so not exactly sure when or how this happened). I'd like to get feedback on whether others have encountered this issue, and whether I should reinstall ruby, rails, or any other program or configuration.
When I enter
$ rails console
It gets me to what looks like the console, but anything I enter returns a NoMethodError, with undefined methods that are typos of what I actually entered.
For example, when I entered
irb(main):001:0> editor = Editor.new(name: "bob")
I get the response
NoMethodError: undefined method 'oews' for main:Object
from (irb):8
from c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/commands/console.rb:47:in 'start'
from c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/commands/console.rb:8:in 'start'
from c:/Ruby193/lib/ruby/gems/1.9.1/gems/railties-3.2.6/lib/rails/commands.rb:41:in <top (required)>'
from script/rails:6:in 'require'
from script/rails:6:in '<main>'
which seems to be a misinterpretation of the "new" method. Also, the railties-3.2.6 folder referenced above seems to be empty.
This happens in both my SQlite3 and PG environments.
Any insight on what may be causing this? I want to minimize the number of reinstallments if possible.
I'm currently running ruby 1.9.3 and rails 3.2.6
Thanks much!
puts 'foo'? – John Feminella Jul 13 '12 at 23:12