Class: Danger::Markdown

Inherits:
Object
  • Object
show all
Defined in:
lib/danger/danger_core/messages/markdown.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(message, file = nil, line = nil) ⇒ Markdown

Returns a new instance of Markdown.



5
6
7
8
9
# File 'lib/danger/danger_core/messages/markdown.rb', line 5

def initialize(message, file = nil, line = nil)
  self.message = message
  self.file = file
  self.line = line
end

Instance Attribute Details

#fileObject

Returns the value of attribute file.



3
4
5
# File 'lib/danger/danger_core/messages/markdown.rb', line 3

def file
  @file
end

#lineObject

Returns the value of attribute line.



3
4
5
# File 'lib/danger/danger_core/messages/markdown.rb', line 3

def line
  @line
end

#messageObject

Returns the value of attribute message.



3
4
5
# File 'lib/danger/danger_core/messages/markdown.rb', line 3

def message
  @message
end

Instance Method Details

#==(other) ⇒ Object



11
12
13
14
15
16
17
18
# File 'lib/danger/danger_core/messages/markdown.rb', line 11

def ==(other)
  return false if other.nil?
  return false unless other.kind_of? self.class

  other.message == message &&
    other.file == file &&
    other.line == line
end

#eql?(other) ⇒ Boolean

Returns:

  • (Boolean)


28
29
30
# File 'lib/danger/danger_core/messages/markdown.rb', line 28

def eql?(other)
  return self == other
end

#hashObject



20
21
22
23
24
25
26
# File 'lib/danger/danger_core/messages/markdown.rb', line 20

def hash
  h = 1
  h = h * 31 + message.hash
  h = h * 17 + file.hash
  h = h * 17 + line.hash
  h
end

#inline?Boolean

Returns true if is a file or line, false otherwise

Returns:

  • (Boolean)

    returns true if is a file or line, false otherwise



33
34
35
# File 'lib/danger/danger_core/messages/markdown.rb', line 33

def inline?
  file || line
end

#to_sObject



37
38
39
40
41
42
43
# File 'lib/danger/danger_core/messages/markdown.rb', line 37

def to_s
  extra = []
  extra << "file: #{file}" unless file
  extra << "line: #{line}" unless line

  "Markdown #{message} { #{extra.join ', '.freeze} }"
end