Call a method in a class in another class in Ruby
I was wondering how I could call a method in an instance of a class in another class. This is what I came up with class ClassA def method return "This is a method_from_class_A" end end c...