Sha256: dc3118485c288903a174ccdfadea0576e707a11a8282c124dc9516f85e825b03

Contents?: true

Size: 482 Bytes

Versions: 3

Compression:

Stored size: 482 Bytes

Contents

module JenkinsJob
  module Postbuild
    class HtmlPublisher < BasicObject
      attr_reader :name, :keep_all_, :allow_missing_, :dir_, :file_

      def initialize(name)
        @name = name
      end

      def dir(value)
        @dir_ = value
      end

      def file(value)
        @file_ = value
      end

      def keep_all(value = true)
        @keep_all_ = value
      end

      def allow_missing(value = true)
        @allow_missing_ = value
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rubyjobbuilderdsl-0.0.8 lib/rubyjobbuilderdsl/postbuild/html_publisher.rb
rubyjobbuilderdsl-0.0.6 lib/rubyjobbuilderdsl/postbuild/html_publisher.rb
rubyjobbuilderdsl-0.0.4 lib/rubyjobbuilderdsl/postbuild/html_publisher.rb