Sha256: fadf341f0b0b6941a57ebd07608a1657e313bd9a9671b80886b6597fb4121851
Contents?: true
Size: 841 Bytes
Versions: 7
Compression:
Stored size: 841 Bytes
Contents
module KnapsackPro module Client module API module V1 class Queues < Base class << self def queue(args) action_class.new( endpoint_path: '/v1/queues/queue', http_method: :post, request_hash: { :can_initialize_queue => args.fetch(:can_initialize_queue), :commit_hash => args.fetch(:commit_hash), :branch => args.fetch(:branch), :node_total => args.fetch(:node_total), :node_index => args.fetch(:node_index), :node_build_id => KnapsackPro::Config::Env.ci_node_build_id, :test_files => args.fetch(:test_files) } ) end end end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems