Sha256: 25c855954574ea28d45852bf666c323eb59503200777f6a2bf962c072cd2e529
Contents?: true
Size: 607 Bytes
Versions: 22
Compression:
Stored size: 607 Bytes
Contents
# frozen_string_literal: true module OhlohScm class Scm include OhlohScm::System extend Forwardable def_delegators :@core, :status, :activity attr_reader :url, :username, :password attr_accessor :branch_name def initialize(core:, url:, branch_name: nil, username: nil, password: nil) @core = core @url = url.strip if url @branch_name = branch_name&.strip @branch_name = nil if branch_name&.empty? @username = username&.strip @password = password&.strip end def normalize; end def pull(_, _); end def vcs_path; end end end
Version data entries
22 entries across 22 versions & 1 rubygems