class RuboCop::Cop::RSpec::AlignLeftLetBrace

Checks that left braces for adjacent single line lets are aligned.

@example

# bad
let(:foobar) { blahblah }
let(:baz) { bar }
let(:a) { b }

# good
let(:foobar) { blahblah }
let(:baz)    { bar }
let(:a)      { b }