Class: JenkinsJob::Postbuild::JavaDocPublisher
- Inherits:
- BasicObject
- Defined in:
- lib/rubyjobbuilderdsl/postbuild/javadoc_publisher.rb
Instance Attribute Summary collapse
-
#doc_dir_ ⇒ Object
readonly
Returns the value of attribute doc_dir_.
-
#keep_all_ ⇒ Object
readonly
Returns the value of attribute keep_all_.
Instance Method Summary collapse
- #doc_dir(value) ⇒ Object
-
#initialize ⇒ JavaDocPublisher
constructor
A new instance of JavaDocPublisher.
- #keep_all(value = true) ⇒ Object
Constructor Details
#initialize ⇒ JavaDocPublisher
6 7 8 |
# File 'lib/rubyjobbuilderdsl/postbuild/javadoc_publisher.rb', line 6 def initialize @keep_all_ = false end |
Instance Attribute Details
#doc_dir_ ⇒ Object (readonly)
Returns the value of attribute doc_dir_.
4 5 6 |
# File 'lib/rubyjobbuilderdsl/postbuild/javadoc_publisher.rb', line 4 def doc_dir_ @doc_dir_ end |
#keep_all_ ⇒ Object (readonly)
Returns the value of attribute keep_all_.
4 5 6 |
# File 'lib/rubyjobbuilderdsl/postbuild/javadoc_publisher.rb', line 4 def keep_all_ @keep_all_ end |
Instance Method Details
#doc_dir(value) ⇒ Object
10 11 12 |
# File 'lib/rubyjobbuilderdsl/postbuild/javadoc_publisher.rb', line 10 def doc_dir(value) @doc_dir_ = value end |
#keep_all(value = true) ⇒ Object
14 15 16 |
# File 'lib/rubyjobbuilderdsl/postbuild/javadoc_publisher.rb', line 14 def keep_all(value = true) @keep_all_ = value end |