Unverified Commit 7a43a765 authored by Nathan Ward's avatar Nathan Ward Committed by GitHub
Browse files

Merge pull request #158 from SearchLightNZ/fix_client_attributes

Fix client attributes so that hashes and arrays work correctly
parents 28c34bcb 8176e4bf
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -45,13 +45,13 @@ client <%= @shortname %> {
	}
	<%- end -%>
	<%- if defined?(@attributes) and !@attributes.empty? -%>
		<%- if defined?(@attributes).respond_to?('join') -%>
		<%- if @attributes.respond_to?('join') -%>
	<%= @attributes.join("\n  ") %>
		<%- elsif defined?(@attributes).is_a?(Hash) -%>
		<%- elsif @attributes.is_a?(Hash) -%>
			<%- @attributes.sort.each do |k, v| -%>
	<%= k %> = <%= v %>
			<%- end -%>
		<%- elsif defined?(@attributes) -%>
		<%- else -%>
	<%= @attributes %>
		<%- end -%>
	<%- end -%>