I'm interacting with two APIs, which return addresses that are formatted quite differently. One returns an address like "6 Avenue
" and another returns "6 Ave.
"
I explored using the Normalic gem, but for some reason many of my addresses are returned malformed or blank: "6 Avenue
" gets returned as "Ave.
".
I also tried GeoCoder, but each API such as Google and Yahoo have set quotas. After a few hours of testing my app in development, these quotas expire. This obviously won't do in production.
It would be great if there was a library that let me do something like evaluate "6 Ave." == "6 Avenue"
.