class RuboCop::Cop::Salsify::RspecDocString

Check that doc strings for example groups and examples use either single-quoted or double-quoted strings based on the enforced style.

@example

# When EnforcedStyle is double_quotes
# Good
it "does something" do
  ...
end

# When EnforcedStyle is single_quotes
# Good
it 'does something' do
  ...
end