class Ducalis::Line

Attributes

content[R]
number[R]
patch_position[R]

Public Class Methods

new(number, content, patch_position) click to toggle source
# File lib/ducalis/patch.rb, line 63
def initialize(number, content, patch_position)
  @number = number
  @content = content
  @patch_position = patch_position
end

Public Instance Methods

changed?() click to toggle source
# File lib/ducalis/patch.rb, line 69
def changed?
  true
end