class Spec::Rails::Matchers::IncludeText

def matches?(response_or_text)

def matches?(response_or_text)
  @actual = response_or_text.respond_to?(:body) ? response_or_text.body : response_or_text
  return actual.include?(expected)
end