Sha256: ababa17cb688ab25711c9da6476133ecdde4766b52455eacb04b6458eec0dd0e

Contents?: true

Size: 628 Bytes

Versions: 4

Compression:

Stored size: 628 Bytes

Contents

require 'active_support/json'
require 'securerandom'

module Runcible
  module Models
    class PuppetDistributor < Distributor
      attr_accessor 'serve_http', 'serve_https', 'http_dir', 'https_dir', 'absolute_path'

      def initialize(absolute_path, http, https, params = {})
        @absolute_path = absolute_path
        @serve_http = http
        @serve_https = https
        super(params)
      end

      def self.type_id
        'puppet_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

4 entries across 4 versions & 1 rubygems

Version Path
runcible-1.6.0 lib/runcible/models/puppet_distributor.rb
runcible-1.5.1 lib/runcible/models/puppet_distributor.rb
runcible-1.5.0 lib/runcible/models/puppet_distributor.rb
runcible-1.4.0 lib/runcible/models/puppet_distributor.rb