How in ruby is it possible to search text for a string that can have varying contents e.g.
text.include?("match here[generic//regex]and here").should == true
the goal is for the regex to match something to the effect of a version number, but we don't necessarily care what the version number is since the rest of the string matches.
\d+do the trick?