Sha256: 27b328c9b0e2c51326f90eccc43f67f843cb8e1a725328bcf8fac74d71668ba7

Contents?: true

Size: 357 Bytes

Versions: 3

Compression:

Stored size: 357 Bytes

Contents

module JenkinsJob
  module Postbuild
    class PMDPublisher < BasicObject
      attr_reader :pmd_results_, :threshold_limit_

      def initialize
        @threshold_limit_ = 'low'
      end

      def pmd_results(value)
        @pmd_results_ = value
      end

      def threshold_limit(value)
        @threshold_limit_ = value
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

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