Sha256: 029576caf6bb52a2474a2e110e3b39ebdb698608f8d8675c6d31c144aa75fb41
Contents?: true
Size: 478 Bytes
Versions: 29
Compression:
Stored size: 478 Bytes
Contents
require 'active_support/json' require 'securerandom' module Runcible module Models class PuppetInstallDistributor < Distributor attr_accessor 'install_path' 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
29 entries across 29 versions & 1 rubygems