Class: JenkinsJob::Postbuild::HtmlPublisher

Inherits:
BasicObject
Defined in:
lib/rubyjobbuilderdsl/postbuild/html_publisher.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name) ⇒ 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

#nameObject (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