We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm following the blog post, and after install the gem and try to install it, I've the following error:
.rvm/gems/ruby-3.2.1/gems/wasmify-rails-0.2.2/lib/wasmify-rails.rb:24:in `<main>': undefined method `register' for ActiveRecord::ConnectionAdapters:Module (NoMethodError) ActiveRecord::ConnectionAdapters.register("nulldb", "ActiveRecord::ConnectionAdapters::NullDBAdapter", "active_record/connection_adapters/nulldb_adapter") ^^^^^^^^^
Ruby version: ruby 3.2.1 (2023-02-08 revision 31819e82c8) [arm64-darwin21] Rails version: Rails 7.1.5.1 Wasmify-rails version: .rvm/gems/ruby-3.2.1/gems/wasmify-rails-0.2.2
If I inspect the methods from ActiveRecord::ConnectionAdapters it doesn't have register method effectively:
ActiveRecord::ConnectionAdapters
register
> ActiveRecord::ConnectionAdapters.methods - Object.methods > [:autoload_at, :eager_autoload, :eager_load!, :autoload_under]
I'm not sure if I'm missing something in the middle.
The text was updated successfully, but these errors were encountered:
It's been added in Rails 7.2 (that's the minimal version we test the gem with; I should have added this to Readme).
Sorry, something went wrong.
No branches or pull requests
I'm following the blog post, and after install the gem and try to install it, I've the following error:
Ruby version: ruby 3.2.1 (2023-02-08 revision 31819e82c8) [arm64-darwin21]
Rails version: Rails 7.1.5.1
Wasmify-rails version: .rvm/gems/ruby-3.2.1/gems/wasmify-rails-0.2.2
If I inspect the methods from
ActiveRecord::ConnectionAdapters
it doesn't haveregister
method effectively:I'm not sure if I'm missing something in the middle.
The text was updated successfully, but these errors were encountered: