Sha256: fdd0d45245b22be29b66897da79cd67b0a3d2beb5e85efc4b57506c596d8d81b

Contents?: true

Size: 352 Bytes

Versions: 3

Compression:

Stored size: 352 Bytes

Contents

module Runcible
  module Models
    class OstreeImporter < Importer
      ID = 'ostree_web_importer'.freeze
      REPO_TYPE = 'OSTREE'.freeze

      attr_accessor 'branches'

      def id
        OstreeImporter::ID
      end

      def repo_type
        OstreeImporter::REPO_TYPE
      end

      def config
        as_json
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
runcible-1.9.1 lib/runcible/models/ostree_importer.rb
runcible-1.9.0 lib/runcible/models/ostree_importer.rb
runcible-1.8.0 lib/runcible/models/ostree_importer.rb