Module: Jenkins::Tasks::BuildStepProxy

Includes:
Model::DescribableProxy
Included in:
BuilderProxy, PublisherProxy
Defined in:
lib/jenkins/tasks/build_step_proxy.rb

Instance Method Summary collapse

Methods included from Model::DescribableProxy

#get, #getDescriptor

Methods included from Plugin::Proxy

#getTarget, #initialize

Methods included from Plugin::Behavior

extended, #implemented, #included

Methods included from Plugin::Behavior::BehavesAs

#behaves_as

Instance Method Details

#perform(build, launcher, listener) ⇒ Object



12
13
14
15
16
# File 'lib/jenkins/tasks/build_step_proxy.rb', line 12

def perform(build, launcher, listener)
  boolean_result(listener) do
    @object.perform(import(build), import(launcher), import(listener))
  end
end

#prebuild(build, listener) ⇒ Object



6
7
8
9
10
# File 'lib/jenkins/tasks/build_step_proxy.rb', line 6

def prebuild(build, listener)
  boolean_result(listener) do
    @object.prebuild(import(build), import(listener))
  end
end