Sha256: 58205d4d9759eeb2e19a4b8804307e77bfb491fea4e099566f3ba5e4629247bf
Contents?: true
Size: 529 Bytes
Versions: 83
Compression:
Stored size: 529 Bytes
Contents
# frozen_string_literal: true module RailsAppGenerator module Diff # FilePair stores the relative file path, plus the absolute file for both Left and Right site class FilePair attr_reader :file # relative file attr_reader :lhs_file # absolute file for left hand side attr_reader :rhs_file # absolute file for right hand side def initialize(file, lhs_file: nil, rhs_file: nil) @file = file @lhs_file = lhs_file @rhs_file = rhs_file end end end end
Version data entries
83 entries across 83 versions & 1 rubygems