Sha256: 848830e867caf419b0fa2b817281545bfc7543599477ac53710f0d23e026be84
Contents?: true
Size: 408 Bytes
Versions: 3
Compression:
Stored size: 408 Bytes
Contents
module JenkinsJob module BuildStep class Shell < BasicObject attr_reader :cmd_ def initialize(cmd) @cmd_ = cmd end end class Batch < BasicObject attr_reader :cmd_ def initialize(cmd) @cmd_ = cmd end end class Powershell < BasicObject attr_reader :cmd_ def initialize(cmd) @cmd_ = cmd end end end end
Version data entries
3 entries across 3 versions & 1 rubygems