Sha256: fba1305e895d8804dc25fbb4475055f74348534caa6928534ba6e4379e2a775d
Contents?: true
Size: 488 Bytes
Versions: 5
Compression:
Stored size: 488 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('id') to_ret end end end end
Version data entries
5 entries across 5 versions & 1 rubygems