I am trying to compare two Ruby arrays to verify that all of the first array's elements are included in the second one. (The reverse isn't needed.)
For example:
a = ["hello", "goodbye"]
b = ["hello", "goodbye", "orange"]
This should return true.
However, I can't figure out a method that will allow me to do this. Any help would be appreciated!