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