Class: Overcommit::Hook::Message

Inherits:
Struct
  • Object
show all
Defined in:
lib/overcommit/hook/base.rb

Overview

Helper containing metadata about error/warning messages returned by hooks.

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#contentObject

Returns the value of attribute content

Returns:

  • (Object)

    the current value of content



9
10
11
# File 'lib/overcommit/hook/base.rb', line 9

def content
  @content
end

#fileObject

Returns the value of attribute file

Returns:

  • (Object)

    the current value of file



9
10
11
# File 'lib/overcommit/hook/base.rb', line 9

def file
  @file
end

#lineObject

Returns the value of attribute line

Returns:

  • (Object)

    the current value of line



9
10
11
# File 'lib/overcommit/hook/base.rb', line 9

def line
  @line
end

#typeObject

Returns the value of attribute type

Returns:

  • (Object)

    the current value of type



9
10
11
# File 'lib/overcommit/hook/base.rb', line 9

def type
  @type
end

Instance Method Details

#to_sObject



10
11
12
# File 'lib/overcommit/hook/base.rb', line 10

def to_s
  content
end