Class: PreCommit::Checks::Debugger

Inherits:
Grep show all
Defined in:
lib/plugins/pre_commit/checks/debugger.rb

Instance Attribute Summary

Attributes inherited from Plugin

#config, #pluginator

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Grep

#call, #extra_grep, #extra_pattern, #initialize

Methods inherited from Plugin

#initialize, #name

Constructor Details

This class inherits a constructor from PreCommit::Checks::Grep

Class Method Details

.descriptionObject



19
20
21
# File 'lib/plugins/pre_commit/checks/debugger.rb', line 19

def self.description
  "Finds files with 'debugger'."
end

Instance Method Details

#files_filter(staged_files) ⇒ Object



7
8
9
# File 'lib/plugins/pre_commit/checks/debugger.rb', line 7

def files_filter(staged_files)
  staged_files.reject { |file| File.basename(file) =~ /^Gemfile/ }
end

#messageObject



11
12
13
# File 'lib/plugins/pre_commit/checks/debugger.rb', line 11

def message
  "debugger statement(s) found:"
end

#patternObject



15
16
17
# File 'lib/plugins/pre_commit/checks/debugger.rb', line 15

def pattern
  "^[ 	]*(debugger|byebug)"
end