Class: RuboCop::Haml::RubyClipper::TrailingDoRemover

Inherits:
Object
  • Object
show all
Defined in:
lib/rubocop/haml/ruby_clipper.rb

Overview

Remove trailing ‘do`.

Constant Summary collapse

REGEXP =
/
  (?:\b[ \t]*|[ \t])
  do
  [ \t]*
  (\|[^|]*\|)?
  [ \t]*
  (\#.*)?
  \Z
/x.freeze

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(code) ⇒ TrailingDoRemover

Returns a new instance of TrailingDoRemover.

Parameters:

  • code (String)


112
113
114
# File 'lib/rubocop/haml/ruby_clipper.rb', line 112

def initialize(code)
  @code = code
end

Class Method Details

.call(code) ⇒ RubyClip

Parameters:

  • code (String)

Returns:



106
107
108
# File 'lib/rubocop/haml/ruby_clipper.rb', line 106

def call(code)
  new(code).call
end

Instance Method Details

#callHash

Returns:

  • (Hash)


117
118
119
120
121
122
# File 'lib/rubocop/haml/ruby_clipper.rb', line 117

def call
  RubyClip.new(
    code: @code.sub(REGEXP, ''),
    offset: 0
  )
end