Sha256: 8ad19e05f51ac42862799036c697d0327630a069e4269fc1d09edc2196689735
Contents?: true
Size: 829 Bytes
Versions: 27
Compression:
Stored size: 829 Bytes
Contents
module Parliament module Grom module Decorator # Decorator namespace for Grom::Node instances with type: http://id.ukpds.org/schema/PostalAddress module PostalAddress # Builds a full address using the lines of the address and the postcode. # # @return [String, String] the full address of the Grom::Node or an empty string. def full_address address_array.join(', ') end private def address_array address_array = [] (1..5).each do |i| if respond_to?("addressLine#{i}".to_sym) address_array << instance_variable_get("@addressLine#{i}".to_sym) end end address_array << postCode if respond_to?(:postCode) address_array end end end end end
Version data entries
27 entries across 27 versions & 1 rubygems