sentence.rb revision 510ca4e36c4fb16f11b816ef88255554874aa51f
\s*
\s*
(?:
(?<first_class>.+)
)
\s*
\s*
(?:
(?<second_class>.+)
)
\s*}x)
if match
[match[:first_class].strip, match[:second_class].strip]
else
[]
end
end
end