Class: Inspec::Resources::NginxConfHttp

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(params, parent) ⇒ NginxConfHttp

Returns a new instance of NginxConfHttp.



135
136
137
138
# File 'lib/inspec/resources/nginx_conf.rb', line 135

def initialize(params, parent)
  @parent = parent
  @entries = (params || []).map { |x| NginxConfHttpEntry.new(x, parent) }
end

Instance Attribute Details

#entriesObject (readonly)

Returns the value of attribute entries.



134
135
136
# File 'lib/inspec/resources/nginx_conf.rb', line 134

def entries
  @entries
end

Instance Method Details

#locationsObject



144
145
146
# File 'lib/inspec/resources/nginx_conf.rb', line 144

def locations
  servers.map(&:locations).flatten
end

#serversObject



140
141
142
# File 'lib/inspec/resources/nginx_conf.rb', line 140

def servers
  @entries.map(&:servers).flatten
end

#to_sObject Also known as: inspect



148
149
150
# File 'lib/inspec/resources/nginx_conf.rb', line 148

def to_s
  @parent.to_s + ", http entries"
end