Sha256: e789f1bdcf9d9543c8fc6aca1d55d54871fd5a93d8243e0608cf873368f31e1b
Contents?: true
Size: 392 Bytes
Versions: 10
Compression:
Stored size: 392 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
10 entries across 10 versions & 1 rubygems