Class: Inspec::Resources::NginxConfLocation

Inherits:
Object
  • Object
show all
Defined in:
lib/resources/nginx_conf.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(params, parent) ⇒ NginxConfLocation

Returns a new instance of NginxConfLocation.



212
213
214
215
# File 'lib/resources/nginx_conf.rb', line 212

def initialize(params, parent)
  @parent = parent
  @params = params || {}
end

Instance Attribute Details

#paramsObject (readonly)

Returns the value of attribute params.



211
212
213
# File 'lib/resources/nginx_conf.rb', line 211

def params
  @params
end

#parentObject (readonly)

Returns the value of attribute parent.



211
212
213
# File 'lib/resources/nginx_conf.rb', line 211

def parent
  @parent
end

Instance Method Details

#to_sObject Also known as: inspect



217
218
219
220
221
# File 'lib/resources/nginx_conf.rb', line 217

def to_s
  location = Array(params['_']).join(' ')
  # go three levels up: 1. to the server entry, 2. http entry and 3. to the root nginx conf
  @parent.parent.parent.to_s + ", location #{location.inspect}"
end