class Comment

Attributes

file[RW]
line[RW]
text[RW]

Public Class Methods

new(file:, line:, text:) click to toggle source
# File lib/comment.rb, line 4
def initialize(file:, line:, text:)
  self.file = file
  self.line = line
  self.text = text
end