class RuboCop::Cop::RSpec::AlignLeftLetBrace
let(:a) { b }
let(:baz) { bar }
let(:foobar) { blahblah }
# good
let(:a) { b }
let(:baz) { bar }
let(:foobar) { blahblah }
# bad
@example
Checks that left braces for adjacent single line lets are aligned.
def self.autocorrect_incompatible_with
def self.autocorrect_incompatible_with [Layout::ExtraSpacing] end
def on_new_investigation
def on_new_investigation super return if processed_source.blank? token_aligner.offending_tokens.each do |let| add_offense(let.loc.begin) do |corrector| corrector.insert_before( let.loc.begin, token_aligner.indent_for(let) ) end end end
def token_aligner
def token_aligner RuboCop::RSpec::AlignLetBrace.new(processed_source.ast, :begin) end