Class: Dapp::Config::Directive::GitArtifactRemote

Inherits:
GitArtifactLocal show all
Defined in:
lib/dapp/config/directive/git_artifact_remote.rb

Overview

GitArtifactRemote

Defined Under Namespace

Classes: Export

Instance Attribute Summary collapse

Attributes inherited from ArtifactBase

#_group, #_owner

Instance Method Summary collapse

Constructor Details

#initialize(url, **kwargs, &blk) ⇒ GitArtifactRemote

Returns a new instance of GitArtifactRemote.

Raises:



8
9
10
11
12
13
14
15
# File 'lib/dapp/config/directive/git_artifact_remote.rb', line 8

def initialize(url, **kwargs, &blk)
  raise Error::Config, code: :git_artifact_remote_unsupported_protocol, data: { url: url } unless %w(http https).include? URI(url.to_s).scheme

  @_url  = url
  @_name = url.gsub(%r{.*?([^\/ ]+)\.git}, '\\1')

  super(**kwargs, &blk)
end

Instance Attribute Details

#_branchObject (readonly)

Returns the value of attribute _branch.



6
7
8
# File 'lib/dapp/config/directive/git_artifact_remote.rb', line 6

def _branch
  @_branch
end

#_commitObject (readonly)

Returns the value of attribute _commit.



6
7
8
# File 'lib/dapp/config/directive/git_artifact_remote.rb', line 6

def _commit
  @_commit
end

#_nameObject (readonly)

Returns the value of attribute _name.



6
7
8
# File 'lib/dapp/config/directive/git_artifact_remote.rb', line 6

def _name
  @_name
end

#_urlObject (readonly)

Returns the value of attribute _url.



6
7
8
# File 'lib/dapp/config/directive/git_artifact_remote.rb', line 6

def _url
  @_url
end

Instance Method Details

#_exportObject



17
18
19
20
21
22
23
24
# File 'lib/dapp/config/directive/git_artifact_remote.rb', line 17

def _export
  super do |export|
    export._url    = @_url
    export._name   = @_name
    export._branch ||= @_branch
    export._commit ||= @_commit
  end
end