Sha256: d7ac31f08a4d8e62289e88e1d5e31605f66ba52b7525dd4fbafc71e37cec83fc

Contents?: true

Size: 1.29 KB

Versions: 10

Compression:

Stored size: 1.29 KB

Contents

# encoding: utf-8
require 'rails_best_practices/core/check'

module RailsBestPractices
  module Prepares
    # Remember helper methods.
    class HelperPrepare < Core::Check
      include Core::Check::Moduleable
      include Core::Check::Accessable

      interesting_nodes :def, :command
      interesting_files HELPER_FILES, CONTROLLER_FILES

      def initialize
        @helpers = Prepares.helpers
        @methods = Prepares.helper_methods
      end

      # check module node to remember the module name.
      add_callback :start_module do |node|
        @helpers << Core::Mod.new(current_module_name, [])
      end

      # check def node to remember all methods.
      #
      # the remembered methods (@methods) are like
      #     {
      #       "PostsHelper" => {
      #         "create_time" => {"file" => "app/helpers/posts_helper.rb", "line" => 10, "unused" => false},
      #         "update_time" => {"file" => "app/helpers/posts_helper.rb", "line" => 10, "unused" => false}
      #       }
      #     }
      add_callback :start_def do |node|
        if node.file =~ HELPER_FILES
          method_name = node.method_name.to_s
          @methods.add_method(current_module_name, method_name, {"file" => node.file, "line" => node.line}, current_access_control)
        end
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
rails_best_practices-1.13.8 lib/rails_best_practices/prepares/helper_prepare.rb
rails_best_practices-1.13.5 lib/rails_best_practices/prepares/helper_prepare.rb
rails_best_practices-1.13.4 lib/rails_best_practices/prepares/helper_prepare.rb
rails_best_practices-1.13.3 lib/rails_best_practices/prepares/helper_prepare.rb
rails_best_practices-1.13.2 lib/rails_best_practices/prepares/helper_prepare.rb
rails_best_practices-1.13.1 lib/rails_best_practices/prepares/helper_prepare.rb
rails_best_practices-1.13.0 lib/rails_best_practices/prepares/helper_prepare.rb
rails_best_practices-1.12.0 lib/rails_best_practices/prepares/helper_prepare.rb
rails_best_practices-1.11.1 lib/rails_best_practices/prepares/helper_prepare.rb
rails_best_practices-1.11.0 lib/rails_best_practices/prepares/helper_prepare.rb