Class: PreCommit::Checks::GemfilePath

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

Instance Attribute Summary

Attributes inherited from Plugin

#config, #pluginator

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Grep

#call, #extra_pattern, #initialize

Methods inherited from Plugin

#initialize, #name

Constructor Details

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

Class Method Details

.descriptionObject



23
24
25
# File 'lib/plugins/pre_commit/checks/gemfile_path.rb', line 23

def self.description
  "Checks 'Gemfile' for local paths."
end

Instance Method Details

#extra_grepObject



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

def extra_grep
  %w{-v #}
end

#files_filter(staged_files) ⇒ Object



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

def files_filter(staged_files)
  staged_files.grep(/^Gemfile$/)
end

#messageObject



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

def message
  "local path found in Gemfile:"
end

#patternObject



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

def pattern
  "path:|:path\\s*=>"
end