Sha256: 4469a29cad4657a59411c9cb30ae38c3de64bd1acc14a7c360a7ef82eecbb1a3
Contents?: true
Size: 389 Bytes
Versions: 3
Compression:
Stored size: 389 Bytes
Contents
require_relative 'command' module Contentful module Importer class PublishEntries < Command self.command = 'publish-entries' self.summary = 'Publish entries.' def self.options super.concat(data_options).sort end def self.publish(importer) importer.publish_entries_in_threads end def run super self.class.publish(@importer) end end end end
Version data entries
3 entries across 3 versions & 1 rubygems