Sha256: 0c0ffe981734025a92eb0f5560b85611a583c43ab090ccd122b18db9a8f9d9d1
Contents?: true
Size: 526 Bytes
Versions: 1
Compression:
Stored size: 526 Bytes
Contents
require 'active_support/json' require 'securerandom' module Runcible module Models class PuppetInstallDistributor < Distributor attr_accessor 'install_path', 'subdir' def initialize(install_path, params = {}) @install_path = install_path super(params) end def self.type_id 'puppet_install_distributor' end def config to_ret = self.as_json to_ret.delete('auto_publish') to_ret.delete('id') to_ret end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
runcible-2.11.1 | lib/runcible/models/puppet_install_distributor.rb |