Class: Serverspec::Type::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/serverspec/type/base.rb

Instance Method Summary collapse

Constructor Details

#initialize(name = nil) ⇒ Base

Returns a new instance of Base.



3
4
5
6
# File 'lib/serverspec/type/base.rb', line 3

def initialize(name=nil)
  @name   = name
  @runner = Specinfra::Runner
end

Instance Method Details

#inspectObject



15
16
17
18
19
20
21
# File 'lib/serverspec/type/base.rb', line 15

def inspect
  if defined?(PowerAssert)
    @inspection
  else
    to_s
  end
end

#to_aryObject



23
24
25
# File 'lib/serverspec/type/base.rb', line 23

def to_ary
  to_s.split(" ")
end

#to_sObject



8
9
10
11
12
13
# File 'lib/serverspec/type/base.rb', line 8

def to_s
  type = self.class.name.split(':')[-1]
  type.gsub!(/([a-z\d])([A-Z])/, '\1 \2')
  type.capitalize!
  %Q!#{type} "#{@name}"!
end