class RuboCop::Cop::RSpec::AlignRightLetBrace

Checks that right 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        }