module Jujube::Components::Builders
Helper methods for creating builder components.
Public Instance Methods
shell(command)
click to toggle source
Specify a `shell` builder for a job.
See {docs.openstack.org/infra/jenkins-job-builder/builders.html#builders.shell}.
@param command [String] The shell command to execute. @return [Hash] The specification for the component.
# File lib/jujube/components/builders.rb, line 23 def shell(command) {'shell' => command} end