Hi,
everytime i reload! the rails console i get this error:
irb(main):008> reload!
Reloading...
(irb):8:in `<main>': undefined method `end_line=' for nil (NoMethodError)
node.end_line = @end_line
^^^^^^^^^^^^^
irb(main):009>
it was annoying but didnt bother me enough to dig a little deeper. but today was the day. so i searched my whole computer for that line and ended up in the psych gem folder right here:
|
node.end_column = @end_column |
def set_end_location(node)
node.end_line = @end_line
node.end_column = @end_column
end`
it is obviously not the actual cause of the issue but has anyone an idea how i could figure out where the issue is?
thanks in advance!