Sha256: ed0343e82641707cc94f121a9971dc82f1ed098804baac46da067d34854f64a0

Contents?: true

Size: 598 Bytes

Versions: 12

Compression:

Stored size: 598 Bytes

Contents

Indocker.add_artifact(
  Indocker::Artifacts::Git.new(
    name:        :indocker_readme,
    remote_name: 'origin',
    remote_url:  'https://github.com/ArtStation/indocker.git',
    branch:      :master,
    files: [
      Indocker::Artifacts::DTO::FileDTO.new(
        source_path: './README.md',
        target_path: Indocker.deploy_dir,
      )
    ]
  )
)

Indocker.add_artifact(
  Indocker::Artifacts::Remote.new(
    name: :hosts_file,
    files: [
      Indocker::Artifacts::DTO::FileDTO.new(
        source_path: '/etc/hosts',
        target_path: Indocker.deploy_dir,
      )
    ]
  )
)

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
indocker-0.3.9 example/indocker/infrastructure/artifacts.rb
indocker-0.3.8 example/indocker/infrastructure/artifacts.rb
indocker-0.3.7 example/indocker/infrastructure/artifacts.rb
indocker-0.3.6 example/indocker/infrastructure/artifacts.rb
indocker-0.3.5 example/indocker/infrastructure/artifacts.rb
indocker-0.3.4 example/indocker/infrastructure/artifacts.rb
indocker-0.3.3 example/indocker/infrastructure/artifacts.rb
indocker-0.3.2 example/indocker/infrastructure/artifacts.rb
indocker-0.1.18 example/indocker/infrastructure/artifacts.rb
indocker-0.3.1 example/indocker/infrastructure/artifacts.rb
indocker-0.3.0 example/indocker/infrastructure/artifacts.rb
indocker-0.1.17 example/indocker/infrastructure/artifacts.rb