Sha256: ff7b1b9c4d4c1f186293d38765ae18a9858198eb2b711ff7080269bc9e85632e
Contents?: true
Size: 561 Bytes
Versions: 10
Compression:
Stored size: 561 Bytes
Contents
# frozen_string_literal: true module AnnotateRb module ModelAnnotator # A plain old Ruby object (PORO) that contains all necessary information for SingleFileAnnotator class SingleFileAnnotatorInstruction def initialize(file, annotation, position, options) @file = file # Path to file @annotation = annotation # Annotation string @position = position # Position in the file where to write the annotation to @options = options end attr_reader :file, :annotation, :position, :options end end end
Version data entries
10 entries across 10 versions & 1 rubygems