Closed mikebaldry closed 5 years ago
For anyone seeing this error, I encountered it when adding postgresql_cursor to my Gemfile.
postgresql_cursor
Gemfile
I had to use gem "postgresql_cursor", require: false and then require "postgresql_cursor" manually where I needed it.
gem "postgresql_cursor", require: false
require "postgresql_cursor"
This would be good to document, I think.
Rails 4.2.11, Ruby 2.5.3p105, Bundler 1.17.2
If anyone else has encountered this, this has been fixed in v0.6.3. Upgrading would fix it.
For anyone seeing this error, I encountered it when adding
postgresql_cursor
to myGemfile
.I had to use
gem "postgresql_cursor", require: false
and thenrequire "postgresql_cursor"
manually where I needed it.This would be good to document, I think.
Rails 4.2.11, Ruby 2.5.3p105, Bundler 1.17.2