I am using gmaps4rails to easily generate a google map on my app. gmaps4rails requires a lat and long attributes in the model. however, gmaps4rails isn't very friendly with ambiguous addresses. For example, it doesn't know what address to show when I list an apartment number.
So, I just installed geocoder. I am using geocoder to take my :location attribute and set the lat/long of that in my model. It seems to be working right now but since both gems use the lat/long attributes, I am thinking this will cause a conflict later on. Will it?