class AddressLineDivider::Configuration

Attributes

streets_file_path[R]

Public Class Methods

streets_file_path=(path) click to toggle source
# File lib/address_line_divider/configuration.rb, line 9
def streets_file_path=(path)
  return if path.nil?

  raise FileNotFound, "Couldn't find a file with the path `#{path}`." unless File.exist? path

  @streets_file_path = path
end