Class: Specinfra::Backend::Base
- Inherits:
-
Object
- Object
- Specinfra::Backend::Base
show all
- Defined in:
- lib/specinfra/backend/base.rb
Class Method Summary
collapse
Instance Method Summary
collapse
Constructor Details
#initialize(config = {}) ⇒ Base
Returns a new instance of Base.
15
16
17
|
# File 'lib/specinfra/backend/base.rb', line 15
def initialize(config = {})
@config = config
end
|
Class Method Details
.clear ⇒ Object
11
12
13
|
# File 'lib/specinfra/backend/base.rb', line 11
def self.clear
@instance = nil
end
|
.instance ⇒ Object
7
8
9
|
# File 'lib/specinfra/backend/base.rb', line 7
def self.instance
@instance ||= self.new
end
|
Instance Method Details
#command ⇒ Object
38
39
40
|
# File 'lib/specinfra/backend/base.rb', line 38
def command
CommandFactory.new(os_info)
end
|
#get_config(key) ⇒ Object
19
20
21
|
# File 'lib/specinfra/backend/base.rb', line 19
def get_config(key)
@config[key] || Specinfra.configuration.send(key)
end
|
#host_inventory ⇒ Object
42
43
44
|
# File 'lib/specinfra/backend/base.rb', line 42
def host_inventory
@inventory ||= HostInventory.new(self)
end
|
#os_info ⇒ Object
27
28
29
30
31
32
33
34
35
36
|
# File 'lib/specinfra/backend/base.rb', line 27
def os_info
return @os_info if @os_info
Specinfra::Helper::DetectOs.subclasses.each do |klass|
if @os_info = klass.new(self).detect
@os_info[:arch] ||= self.run_command('uname -m').stdout.strip
return @os_info
end
end
end
|
#set_config(key, value) ⇒ Object
23
24
25
|
# File 'lib/specinfra/backend/base.rb', line 23
def set_config(key, value)
@config[key] = value
end
|
#set_example(e) ⇒ Object
46
47
48
|
# File 'lib/specinfra/backend/base.rb', line 46
def set_example(e)
@example = e
end
|
#stderr_handler=(block) ⇒ Object
54
55
56
|
# File 'lib/specinfra/backend/base.rb', line 54
def stderr_handler=(block)
@stderr_handler = block
end
|
#stdout_handler=(block) ⇒ Object
50
51
52
|
# File 'lib/specinfra/backend/base.rb', line 50
def stdout_handler=(block)
@stdout_handler = block
end
|