class RuboCop::Cop::RSpec::EmptyLineAfterFinalLet

Checks if there is an empty line after the last let block.

@example

# bad
let(:foo) { bar }
let(:something) { other }
it { does_something }

# good
let(:foo) { bar }
let(:something) { other }

it { does_something }