Sha256: d6d0f125b116e0135983b0933557eab58449178e648c9590b50028c853d36da8
Contents?: true
Size: 580 Bytes
Versions: 17
Compression:
Stored size: 580 Bytes
Contents
module Runcible module Models class YumImporter < Importer ID = 'yum_importer'.freeze REPO_TYPE = 'rpm-repo'.freeze DOWNLOAD_IMMEDIATE = 'immediate'.freeze DOWNLOAD_ON_DEMAND = 'on_demand'.freeze DOWNLOAD_BACKGROUND = 'background'.freeze DOWNLOAD_POLICIES = [DOWNLOAD_IMMEDIATE, DOWNLOAD_ON_DEMAND, DOWNLOAD_BACKGROUND].freeze attr_accessor 'download_policy' def id YumImporter::ID end def repo_type YumImporter::REPO_TYPE end def config as_json end end end end
Version data entries
17 entries across 17 versions & 1 rubygems