Sha256: fa57b3f63a11b0a3073f902407db29f61d227d9cd4d1bf4449004e02e9a9cc1b
Contents?: true
Size: 699 Bytes
Versions: 26
Compression:
Stored size: 699 Bytes
Contents
# frozen_string_literal: true require 'avm/scms/base' require 'eac_ruby_utils/core_ext' module Avm module Git module Scms class GitSubBase < ::Avm::Scms::Base enable_abstract_methods delegate :changed_files, :commit_if_change, :current_milestone_base_commit, :head_commit, :reset_and_commit, :run_commit, to: :parent_scm # @param from [Avm::Git::Scms::Git::Commit] # @param to [Avm::Git::Scms::Git::Commit] # @return [Avm::Git::Scms::GitSubBase::Interval] def interval(from, to) ::Avm::Git::Scms::GitSubBase::Interval.new(self, from, to) end require_sub __FILE__ end end end end
Version data entries
26 entries across 26 versions & 2 rubygems