Sha256: 661b4f4839a85a0beff954fab81b0727eeab2d24b605e0307015f7328f42e42b

Contents?: true

Size: 397 Bytes

Versions: 5

Compression:

Stored size: 397 Bytes

Contents

# frozen_string_literal: true

module AnnotateRb
  module ModelAnnotator
    # A plain old Ruby object (PORO) that contains all necessary information for SingleFileAnnotationRemover
    class SingleFileRemoveAnnotationInstruction
      def initialize(file, options = {})
        @file = file # Path to file
        @options = options
      end

      attr_reader :file, :options
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
annotaterb-4.4.1 lib/annotate_rb/model_annotator/single_file_remove_annotation_instruction.rb
annotaterb-4.4.0 lib/annotate_rb/model_annotator/single_file_remove_annotation_instruction.rb
annotaterb-4.3.1 lib/annotate_rb/model_annotator/single_file_remove_annotation_instruction.rb
annotaterb-4.3.0 lib/annotate_rb/model_annotator/single_file_remove_annotation_instruction.rb
annotaterb-4.2.0 lib/annotate_rb/model_annotator/single_file_remove_annotation_instruction.rb