Here a screen of my code and error messages I get
Uninitialized constant CLASS (NameError)
I am using Cloud9, Ruby, Rails server. I created two simple test scripts. test.rb and parent.rb
parent.rb has a method 'yes' which displays the word yes... test is trying to be a child/dependant of parent so that it can access parent's method 'yes'. But no luck.
I've tried "class test < parent" I've tried adding "require 'parent'" I've tried changing parent from class parent to module parent.