Class: Dapp::Dimg::Config::Directive::GitArtifactRemote
- Inherits:
-
GitArtifactLocal
- Object
- Config::Base
- Config::Directive::Base
- Base
- ArtifactBase
- GitArtifactLocal
- Dapp::Dimg::Config::Directive::GitArtifactRemote
- Defined in:
- lib/dapp/dimg/config/directive/git_artifact_remote.rb
Defined Under Namespace
Classes: Export
Instance Attribute Summary collapse
-
#_branch ⇒ Object
readonly
Returns the value of attribute _branch.
-
#_commit ⇒ Object
readonly
Returns the value of attribute _commit.
-
#_name ⇒ Object
readonly
Returns the value of attribute _name.
-
#_url ⇒ Object
readonly
Returns the value of attribute _url.
Attributes inherited from ArtifactBase
Instance Method Summary collapse
- #_export ⇒ Object
-
#initialize(url, **kwargs, &blk) ⇒ GitArtifactRemote
constructor
A new instance of GitArtifactRemote.
Constructor Details
#initialize(url, **kwargs, &blk) ⇒ GitArtifactRemote
Returns a new instance of GitArtifactRemote.
8 9 10 11 12 13 14 15 16 |
# File 'lib/dapp/dimg/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
#_branch ⇒ Object (readonly)
Returns the value of attribute _branch.
6 7 8 |
# File 'lib/dapp/dimg/config/directive/git_artifact_remote.rb', line 6 def _branch @_branch end |
#_commit ⇒ Object (readonly)
Returns the value of attribute _commit.
6 7 8 |
# File 'lib/dapp/dimg/config/directive/git_artifact_remote.rb', line 6 def _commit @_commit end |
#_name ⇒ Object (readonly)
Returns the value of attribute _name.
6 7 8 |
# File 'lib/dapp/dimg/config/directive/git_artifact_remote.rb', line 6 def _name @_name end |
#_url ⇒ Object (readonly)
Returns the value of attribute _url.
6 7 8 |
# File 'lib/dapp/dimg/config/directive/git_artifact_remote.rb', line 6 def _url @_url end |
Instance Method Details
#_export ⇒ Object
18 19 20 21 22 23 24 25 |
# File 'lib/dapp/dimg/config/directive/git_artifact_remote.rb', line 18 def _export super do |export| export._url = @_url export._name = @_name export._branch ||= @_branch export._commit ||= @_commit end end |