Class: JenkinsJob::Postbuild::CloverPhpPublisher
- Inherits:
- BasicObject
- Defined in:
- lib/rubyjobbuilderdsl/postbuild/cloverphp_publisher.rb
Instance Attribute Summary collapse
-
#archive_ ⇒ Object
readonly
Returns the value of attribute archive_.
-
#failing_target_ ⇒ Object
readonly
Returns the value of attribute failing_target_.
-
#healthy_target_ ⇒ Object
readonly
Returns the value of attribute healthy_target_.
-
#html_report_dir_ ⇒ Object
readonly
Returns the value of attribute html_report_dir_.
-
#unhealthy_target_ ⇒ Object
readonly
Returns the value of attribute unhealthy_target_.
-
#xml_location_ ⇒ Object
readonly
Returns the value of attribute xml_location_.
Instance Method Summary collapse
- #archive(value = true) ⇒ Object
- #failing_target(value) ⇒ Object
- #healthy_target(value) ⇒ Object
- #html_report_dir(value) ⇒ Object
-
#initialize ⇒ CloverPhpPublisher
constructor
A new instance of CloverPhpPublisher.
- #unhealthy_target(value) ⇒ Object
- #xml_location(value) ⇒ Object
Constructor Details
#initialize ⇒ CloverPhpPublisher
Returns a new instance of CloverPhpPublisher.
7 8 9 |
# File 'lib/rubyjobbuilderdsl/postbuild/cloverphp_publisher.rb', line 7 def initialize @archive_ = true end |
Instance Attribute Details
#archive_ ⇒ Object (readonly)
Returns the value of attribute archive_.
4 5 6 |
# File 'lib/rubyjobbuilderdsl/postbuild/cloverphp_publisher.rb', line 4 def archive_ @archive_ end |
#failing_target_ ⇒ Object (readonly)
Returns the value of attribute failing_target_.
4 5 6 |
# File 'lib/rubyjobbuilderdsl/postbuild/cloverphp_publisher.rb', line 4 def failing_target_ @failing_target_ end |
#healthy_target_ ⇒ Object (readonly)
Returns the value of attribute healthy_target_.
4 5 6 |
# File 'lib/rubyjobbuilderdsl/postbuild/cloverphp_publisher.rb', line 4 def healthy_target_ @healthy_target_ end |
#html_report_dir_ ⇒ Object (readonly)
Returns the value of attribute html_report_dir_.
4 5 6 |
# File 'lib/rubyjobbuilderdsl/postbuild/cloverphp_publisher.rb', line 4 def html_report_dir_ @html_report_dir_ end |
#unhealthy_target_ ⇒ Object (readonly)
Returns the value of attribute unhealthy_target_.
4 5 6 |
# File 'lib/rubyjobbuilderdsl/postbuild/cloverphp_publisher.rb', line 4 def unhealthy_target_ @unhealthy_target_ end |
#xml_location_ ⇒ Object (readonly)
Returns the value of attribute xml_location_.
4 5 6 |
# File 'lib/rubyjobbuilderdsl/postbuild/cloverphp_publisher.rb', line 4 def xml_location_ @xml_location_ end |
Instance Method Details
#archive(value = true) ⇒ Object
19 20 21 |
# File 'lib/rubyjobbuilderdsl/postbuild/cloverphp_publisher.rb', line 19 def archive(value = true) @archive_ = value end |
#failing_target(value) ⇒ Object
31 32 33 |
# File 'lib/rubyjobbuilderdsl/postbuild/cloverphp_publisher.rb', line 31 def failing_target(value) @failing_target_ = value end |
#healthy_target(value) ⇒ Object
23 24 25 |
# File 'lib/rubyjobbuilderdsl/postbuild/cloverphp_publisher.rb', line 23 def healthy_target(value) @healthy_target_ = value end |
#html_report_dir(value) ⇒ Object
15 16 17 |
# File 'lib/rubyjobbuilderdsl/postbuild/cloverphp_publisher.rb', line 15 def html_report_dir(value) @html_report_dir_ = value end |
#unhealthy_target(value) ⇒ Object
27 28 29 |
# File 'lib/rubyjobbuilderdsl/postbuild/cloverphp_publisher.rb', line 27 def unhealthy_target(value) @unhealthy_target_ = value end |
#xml_location(value) ⇒ Object
11 12 13 |
# File 'lib/rubyjobbuilderdsl/postbuild/cloverphp_publisher.rb', line 11 def xml_location(value) @xml_location_ = value end |