Class: RuboCop::Git::CommitFile
- Inherits:
-
Object
- Object
- RuboCop::Git::CommitFile
- Defined in:
- lib/rubocop/git/commit_file.rb
Overview
Instance Method Summary collapse
- #absolute_path ⇒ Object
- #content ⇒ Object
- #filename ⇒ Object
-
#initialize(file, commit) ⇒ CommitFile
constructor
A new instance of CommitFile.
- #modified_line_at(line_number) ⇒ Object
- #modified_lines ⇒ Object
- #relevant_line?(line_number) ⇒ Boolean
- #removed? ⇒ Boolean
- #ruby? ⇒ Boolean
Constructor Details
#initialize(file, commit) ⇒ CommitFile
Returns a new instance of CommitFile.
4 5 6 7 |
# File 'lib/rubocop/git/commit_file.rb', line 4 def initialize(file, commit) @file = file @commit = commit end |
Instance Method Details
#absolute_path ⇒ Object
9 10 11 |
# File 'lib/rubocop/git/commit_file.rb', line 9 def absolute_path @file.absolute_path end |
#content ⇒ Object
17 18 19 20 21 22 23 |
# File 'lib/rubocop/git/commit_file.rb', line 17 def content @content ||= begin unless removed? @commit.file_content(filename) end end end |
#filename ⇒ Object
13 14 15 |
# File 'lib/rubocop/git/commit_file.rb', line 13 def filename @file.filename end |
#modified_line_at(line_number) ⇒ Object
43 44 45 46 47 |
# File 'lib/rubocop/git/commit_file.rb', line 43 def modified_line_at(line_number) modified_lines.detect do |modified_line| modified_line.line_number == line_number end end |
#modified_lines ⇒ Object
39 40 41 |
# File 'lib/rubocop/git/commit_file.rb', line 39 def modified_lines @modified_lines ||= patch.additions end |
#relevant_line?(line_number) ⇒ Boolean
25 26 27 28 29 |
# File 'lib/rubocop/git/commit_file.rb', line 25 def relevant_line?(line_number) modified_lines.detect do |modified_line| modified_line.line_number == line_number end end |
#removed? ⇒ Boolean
31 32 33 |
# File 'lib/rubocop/git/commit_file.rb', line 31 def removed? @file.status == 'removed' end |
#ruby? ⇒ Boolean
35 36 37 |
# File 'lib/rubocop/git/commit_file.rb', line 35 def ruby? filename.match(/.*\.rb$/) end |