Project

General

Profile

Download (357 Bytes) Statistics
| Branch: | Tag: | Revision:

runcible / lib / runcible / models / puppet_importer.rb @ c0df0f4c

1
module Runcible
2
  module Models
3
    class PuppetImporter < Importer
4
      ID = 'puppet_importer'.freeze
5
      REPO_TYPE = 'puppet-repo'.freeze
6

    
7
      attr_accessor 'queries'
8

    
9
      def id
10
        PuppetImporter::ID
11
      end
12

    
13
      def repo_type
14
        PuppetImporter::REPO_TYPE
15
      end
16

    
17
      def config
18
        self.as_json
19
      end
20
    end
21
  end
22
end