I followed the directions here but when I run Location.all, I get
ActiveRecord::StatementInvalid: Could not find table 'locations'
Are there any extra setup steps or configuration required for using geokit-rails in a Rails 5 app? Does it have anything to do with the fact I'm still using Sqlite and haven't switched databases yet?
The documentation refers to an example of how to setup geokit-rails in the model. The gem doesn't serve/ship with a ready-made table. You should generate the table instead. Assuming you already have
Locationmodel in your app, then generate a migration to createlocationstableand do
rake db:migrate