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
Class Method Details
.description ⇒ Object
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
19
20
21
|
# File 'lib/plugins/pre_commit/checks/gemfile_path.rb', line 19
def
%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
|
#message ⇒ Object
11
12
13
|
# File 'lib/plugins/pre_commit/checks/gemfile_path.rb', line 11
def message
"local path found in Gemfile:"
end
|
#pattern ⇒ Object
15
16
17
|
# File 'lib/plugins/pre_commit/checks/gemfile_path.rb', line 15
def pattern
"path:|:path\\s*=>"
end
|