Sha256: 9795490cac154368202a2ab84e160ffe6f80fb4ea3528cc72d42c9720d3250c6
Contents?: true
Size: 521 Bytes
Versions: 3
Compression:
Stored size: 521 Bytes
Contents
module JenkinsJob module Common class LogRotate < BasicObject attr_reader :days_to_keep_, :num_to_keep_, :artifact_days_to_keep_, :artifact_num_to_keep_ def days_to_keep(value) @days_to_keep_ = value end def num_to_keep(value) @num_to_keep_ = value end def artifact_days_to_keep(value) @artifact_days_to_keep_ = value end def artifact_num_to_keep(value) @artifact_num_to_keep_ = value end end end end
Version data entries
3 entries across 3 versions & 1 rubygems