Class: JenkinsJob::BuildStep::Xvfb
- Inherits:
- BasicObject
- Defined in:
- lib/rubyjobbuilderdsl/buildstep/xvfb.rb
Instance Attribute Summary collapse
-
#auto_display_name_ ⇒ Object
readonly
Returns the value of attribute auto_display_name_.
-
#debug_ ⇒ Object
readonly
Returns the value of attribute debug_.
-
#display_name_offset_ ⇒ Object
readonly
Returns the value of attribute display_name_offset_.
-
#install_name_ ⇒ Object
readonly
Returns the value of attribute install_name_.
-
#parallel_build_ ⇒ Object
readonly
Returns the value of attribute parallel_build_.
-
#screen_ ⇒ Object
readonly
Returns the value of attribute screen_.
-
#shutdown_with_build_ ⇒ Object
readonly
Returns the value of attribute shutdown_with_build_.
-
#timeout_ ⇒ Object
readonly
Returns the value of attribute timeout_.
Instance Method Summary collapse
- #auto_display_name(value) ⇒ Object
- #display_name_offset(value) ⇒ Object
-
#initialize ⇒ Xvfb
constructor
A new instance of Xvfb.
- #install_name(value) ⇒ Object
- #parallel_build(value) ⇒ Object
- #screen(value) ⇒ Object
- #shutdown_with_build(value) ⇒ Object
- #timeout(value) ⇒ Object
Constructor Details
#initialize ⇒ Xvfb
6 7 8 9 10 11 12 13 14 15 |
# File 'lib/rubyjobbuilderdsl/buildstep/xvfb.rb', line 6 def initialize @install_name_ = 'Xvfb' @screen_ = '1024x768x24' @debug_ = false @timeout_ = 0 @display_name_offset_ = 1 @shutdown_with_build_ = false @auto_display_name_ = true @parallel_build_ = false end |
Instance Attribute Details
#auto_display_name_ ⇒ Object (readonly)
Returns the value of attribute auto_display_name_.
4 5 6 |
# File 'lib/rubyjobbuilderdsl/buildstep/xvfb.rb', line 4 def auto_display_name_ @auto_display_name_ end |
#debug_ ⇒ Object (readonly)
Returns the value of attribute debug_.
4 5 6 |
# File 'lib/rubyjobbuilderdsl/buildstep/xvfb.rb', line 4 def debug_ @debug_ end |
#display_name_offset_ ⇒ Object (readonly)
Returns the value of attribute display_name_offset_.
4 5 6 |
# File 'lib/rubyjobbuilderdsl/buildstep/xvfb.rb', line 4 def display_name_offset_ @display_name_offset_ end |
#install_name_ ⇒ Object (readonly)
Returns the value of attribute install_name_.
4 5 6 |
# File 'lib/rubyjobbuilderdsl/buildstep/xvfb.rb', line 4 def install_name_ @install_name_ end |
#parallel_build_ ⇒ Object (readonly)
Returns the value of attribute parallel_build_.
4 5 6 |
# File 'lib/rubyjobbuilderdsl/buildstep/xvfb.rb', line 4 def parallel_build_ @parallel_build_ end |
#screen_ ⇒ Object (readonly)
Returns the value of attribute screen_.
4 5 6 |
# File 'lib/rubyjobbuilderdsl/buildstep/xvfb.rb', line 4 def screen_ @screen_ end |
#shutdown_with_build_ ⇒ Object (readonly)
Returns the value of attribute shutdown_with_build_.
4 5 6 |
# File 'lib/rubyjobbuilderdsl/buildstep/xvfb.rb', line 4 def shutdown_with_build_ @shutdown_with_build_ end |
#timeout_ ⇒ Object (readonly)
Returns the value of attribute timeout_.
4 5 6 |
# File 'lib/rubyjobbuilderdsl/buildstep/xvfb.rb', line 4 def timeout_ @timeout_ end |
Instance Method Details
#auto_display_name(value) ⇒ Object
37 38 39 |
# File 'lib/rubyjobbuilderdsl/buildstep/xvfb.rb', line 37 def auto_display_name(value) @auto_display_name_ = value end |
#display_name_offset(value) ⇒ Object
29 30 31 |
# File 'lib/rubyjobbuilderdsl/buildstep/xvfb.rb', line 29 def display_name_offset(value) @display_name_offset_ = value end |
#install_name(value) ⇒ Object
17 18 19 |
# File 'lib/rubyjobbuilderdsl/buildstep/xvfb.rb', line 17 def install_name(value) @install_name_ = value end |
#parallel_build(value) ⇒ Object
41 42 43 |
# File 'lib/rubyjobbuilderdsl/buildstep/xvfb.rb', line 41 def parallel_build(value) @parallel_build_ = value end |
#screen(value) ⇒ Object
21 22 23 |
# File 'lib/rubyjobbuilderdsl/buildstep/xvfb.rb', line 21 def screen(value) @screen_ = value end |
#shutdown_with_build(value) ⇒ Object
33 34 35 |
# File 'lib/rubyjobbuilderdsl/buildstep/xvfb.rb', line 33 def shutdown_with_build(value) @shutdown_with_build_ = value end |
#timeout(value) ⇒ Object
25 26 27 |
# File 'lib/rubyjobbuilderdsl/buildstep/xvfb.rb', line 25 def timeout(value) @timeout_ = value end |