class DPL::Provider::Bintray::Artifact

This class represents an artifact (file) to be uploaded to Bintray.

Attributes

local_path[R]
matrix_params[R]
upload_path[R]

Public Class Methods

new(local_path, upload_path, matrix_params) click to toggle source
# File lib/dpl/provider/bintray.rb, line 477
def initialize(local_path, upload_path, matrix_params)
  @local_path = local_path
  @upload_path = upload_path
  @matrix_params = matrix_params
end

Public Instance Methods

eql?(other) click to toggle source
# File lib/dpl/provider/bintray.rb, line 487
def eql?(other)
  @localPath == other.local_path
end
hash() click to toggle source
# File lib/dpl/provider/bintray.rb, line 483
def hash
  return @localPath.hash
end