Class: RuboCop::Git::CommitFile

Inherits:
Object
  • Object
show all
Defined in:
lib/rubocop/git/commit_file.rb

Overview

Instance Method Summary collapse

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_pathObject



9
10
11
# File 'lib/rubocop/git/commit_file.rb', line 9

def absolute_path
  @file.absolute_path
end

#contentObject



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

#filenameObject



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_linesObject



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

Returns:

  • (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

Returns:

  • (Boolean)


31
32
33
# File 'lib/rubocop/git/commit_file.rb', line 31

def removed?
  @file.status == 'removed'
end

#ruby?Boolean

Returns:

  • (Boolean)


35
36
37
# File 'lib/rubocop/git/commit_file.rb', line 35

def ruby?
  filename.match(/.*\.rb$/)
end