Class: Serverspec::Type::Base

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name = nil, options = {}) ⇒ Base

Returns a new instance of Base.



6
7
8
9
10
# File 'lib/serverspec/type/base.rb', line 6

def initialize(name=nil, options = {})
  @name    = name
  @options = options
  @runner  = Specinfra::Runner
end

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name.



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

def name
  @name
end

Instance Method Details

#inspectObject



19
20
21
22
23
24
25
# File 'lib/serverspec/type/base.rb', line 19

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

#to_aryObject



27
28
29
# File 'lib/serverspec/type/base.rb', line 27

def to_ary
  to_s.split(" ")
end

#to_sObject



12
13
14
15
16
17
# File 'lib/serverspec/type/base.rb', line 12

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