Class: JenkinsJob::Postbuild::HtmlPublisher
- Inherits:
- BasicObject
- Defined in:
- lib/rubyjobbuilderdsl/postbuild/html_publisher.rb
Instance Attribute Summary collapse
-
#allow_missing_ ⇒ Object
readonly
Returns the value of attribute allow_missing_.
-
#dir_ ⇒ Object
readonly
Returns the value of attribute dir_.
-
#file_ ⇒ Object
readonly
Returns the value of attribute file_.
-
#keep_all_ ⇒ Object
readonly
Returns the value of attribute keep_all_.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
- #allow_missing(value = true) ⇒ Object
- #dir(value) ⇒ Object
- #file(value) ⇒ Object
-
#initialize(name) ⇒ HtmlPublisher
constructor
A new instance of HtmlPublisher.
- #keep_all(value = true) ⇒ Object
Constructor Details
#initialize(name) ⇒ HtmlPublisher
Returns a new instance of HtmlPublisher.
6 7 8 |
# File 'lib/rubyjobbuilderdsl/postbuild/html_publisher.rb', line 6 def initialize(name) @name = name end |
Instance Attribute Details
#allow_missing_ ⇒ Object (readonly)
Returns the value of attribute allow_missing_.
4 5 6 |
# File 'lib/rubyjobbuilderdsl/postbuild/html_publisher.rb', line 4 def allow_missing_ @allow_missing_ end |
#dir_ ⇒ Object (readonly)
Returns the value of attribute dir_.
4 5 6 |
# File 'lib/rubyjobbuilderdsl/postbuild/html_publisher.rb', line 4 def dir_ @dir_ end |
#file_ ⇒ Object (readonly)
Returns the value of attribute file_.
4 5 6 |
# File 'lib/rubyjobbuilderdsl/postbuild/html_publisher.rb', line 4 def file_ @file_ end |
#keep_all_ ⇒ Object (readonly)
Returns the value of attribute keep_all_.
4 5 6 |
# File 'lib/rubyjobbuilderdsl/postbuild/html_publisher.rb', line 4 def keep_all_ @keep_all_ end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
4 5 6 |
# File 'lib/rubyjobbuilderdsl/postbuild/html_publisher.rb', line 4 def name @name end |
Instance Method Details
#allow_missing(value = true) ⇒ Object
22 23 24 |
# File 'lib/rubyjobbuilderdsl/postbuild/html_publisher.rb', line 22 def allow_missing(value = true) @allow_missing_ = value end |
#dir(value) ⇒ Object
10 11 12 |
# File 'lib/rubyjobbuilderdsl/postbuild/html_publisher.rb', line 10 def dir(value) @dir_ = value end |
#file(value) ⇒ Object
14 15 16 |
# File 'lib/rubyjobbuilderdsl/postbuild/html_publisher.rb', line 14 def file(value) @file_ = value end |
#keep_all(value = true) ⇒ Object
18 19 20 |
# File 'lib/rubyjobbuilderdsl/postbuild/html_publisher.rb', line 18 def keep_all(value = true) @keep_all_ = value end |