rails_async_migrations
rails_async_migrations copied to clipboard
Asynchronous support for ActiveRecord::Migration
Results
3
rails_async_migrations issues
Sort by
recently updated
recently updated
newest added
Love the gem! Some high level questions: * Have you considered using ActiveJob? It allows you to define n generic job that works with any underlying adapter (Sidekiq, DelayedJob etc)....
It seems `klass.define_method(...)` does not work in Ruby 2.4.4. It works in Ruby 2.5.5. Work around it using `klass.class_exec { define_method(...) }`. Thank you for this wonderful module! If it...