Sha256: 35c8237f4e3c81c9d0304e72ad1272a3a609538e05a106718467773c4421e0bb

Contents?: true

Size: 1.11 KB

Versions: 7

Compression:

Stored size: 1.11 KB

Contents

# frozen_string_literal: true

require 'rubocop'

module RuboCop
  module Cop
    module Standard
      class RailsControllerRenderActionSymbol < Cop
        MSG = 'Prefer `render` with string instead of symbol'

        def_node_matcher :render_sym?, <<-PATTERN
          (send nil? :render $(sym _))
        PATTERN

        def_node_matcher :render_with_options?, <<-PATTERN
          (send nil? :render (hash $...))
        PATTERN

        def_node_matcher :action_key?, <<-PATTERN
          (pair (sym {:action :template}) $(sym _))
        PATTERN

        def on_send(node)
          if sym_node = render_sym?(node)
            add_offense(sym_node, location: :expression)
          elsif option_pairs = render_with_options?(node)
            option_pairs.each do |pair|
              if sym_node = action_key?(pair)
                add_offense(sym_node, location: :expression)
              end
            end
          end
        end

        def autocorrect(node)
          lambda do |corrector|
            corrector.replace(node.source_range, "\"#{node.children[0]}\"")
          end
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
rubocop-standard-2.1.1 lib/rubocop/cop/standard/rails_controller_render_action_symbol.rb
rubocop-standard-2.1.0 lib/rubocop/cop/standard/rails_controller_render_action_symbol.rb
rubocop-standard-2.0.1 lib/rubocop/cop/standard/rails_controller_render_action_symbol.rb
rubocop-standard-2.0 lib/rubocop/cop/standard/rails_controller_render_action_symbol.rb
rubocop-standard-1.15.1 lib/rubocop/cop/standard/rails_controller_render_action_symbol.rb
rubocop-standard-1.15.0 lib/rubocop/cop/standard/rails_controller_render_action_symbol.rb
rubocop-standard-1.14.0 lib/rubocop/cop/standard/rails_controller_render_action_symbol.rb