I have been following Railscasts guide for converting my db from sqlite to postgreSQl.
I have been able to successfully
- install postgres
- create and configure the db
- connect to it using pgAdminIII
- use
rails db create
to create the database - install taps
- start the taps server
However when I run the pull command to do the transfer i get the following error message
Failed to connect to database:
NameError -> uninitialized constant Sequel::Postgres::PGError
For reference here is the command I used to attempt the pull
taps pull postgres://myuser:mypass@127.0.0.1:5432/mydb_dev http://pynn:secret@localhost:5000
I also attempted with localhost
instead of 127.0.0.1:5432
Clearly something is wrong with my setup, but I can't figure out what it is is from the error message provided.