Sha256: 7050515d474ee59957a68939ea4c965a4b7ad826a1dbc511f955dbdd304a287b
Contents?: true
Size: 711 Bytes
Versions: 10
Compression:
Stored size: 711 Bytes
Contents
module KnapsackPro module Client module API module V1 class BuildDistributions < Base class << self def subset(args) action_class.new( endpoint_path: '/v1/build_distributions/subset', http_method: :post, request_hash: { :commit_hash => args.fetch(:commit_hash), :branch => args.fetch(:branch), :node_total => args.fetch(:node_total), :node_index => args.fetch(:node_index), :test_files => args.fetch(:test_files) } ) end end end end end end end
Version data entries
10 entries across 10 versions & 1 rubygems