Sha256: 62b9f957bc13ae32a1640196f6367592a8eef4a674089e63930e9766c7b081af

Contents?: true

Size: 201 Bytes

Versions: 6

Compression:

Stored size: 201 Bytes

Contents

module FaceControl
  class Comment
    attr_accessor :file, :line, :text

    def initialize(file:, line:, text:)
      self.file = file
      self.line = line
      self.text = text
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
face_control-0.6.0 lib/face_control/comment.rb
face_control-0.5.1 lib/face_control/comment.rb
face_control-0.5.0 lib/face_control/comment.rb
face_control-0.4.0 lib/face_control/comment.rb
face_control-0.3.0 lib/face_control/comment.rb
face_control-0.2.1 lib/face_control/comment.rb