Sha256: 6a4490d706b305e6d17e3a16a5ed2f68f4ea7b828905b211e591c63380d105fd

Contents?: true

Size: 376 Bytes

Versions: 5

Compression:

Stored size: 376 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

5 entries across 5 versions & 1 rubygems

Version Path
rubyjobbuilderdsl-0.0.5 lib/rubyjobbuilderdsl/postbuild/pmd_publisher.rb
rubyjobbuilderdsl-0.0.3 lib/rubyjobbuilderdsl/postbuild/pmd_publisher.rb
rubyjobbuilderdsl-0.0.2 lib/rubyjobbuilderdsl/postbuild/pmd_publisher.rb
rubyjobbuilderdsl-0.0.1 lib/rubyjobbuilderdsl/postbuild/pmd_publisher.rb
rubyjobbuilderdsl-0.0.0 lib/rubyjobbuilderdsl/postbuild/pmd_publisher.rb