Abe Voelker
Abe Voelker
Thanks for your contribution! I'll be happy to merge once you're finished (lemme know). I don't actually even use this image any more TBH... mind if I ask how you...
No problem; wish I could help track things down further, but I'm still a Haskell noob. Hoping after I get more experience I'll be able to read and learn from...
@schneems here's a fresh Rails 5.1 repro app w/ a `good` and `bad` branch: https://github.com/abevoelker/sprockets-bug-repro Just run `rake assets:precompile` to test. Works with sprockets 3.7.1; fails with sprockets 4.0.0.beta6
FWIW I encountered this same issue with a gem I wrote to add a passwordless auth strategy to Devise: [https://github.com/abevoelker/devise-passwordless/blob/bad1cdc4a45be0a85c7f4410e8254b0ef2b90c10/lib/devise/models/magic_link_authenticatable.rb#L12](https://github.com/abevoelker/devise-passwordless/blob/bad1cdc4a45be0a85c7f4410e8254b0ef2b90c10/lib/devise/models/magic_link_authenticatable.rb#L12) I actually just remembered to open a ticket to report...
Perhaps instead of checking `:password_required?` just checking if the model responds to `password` instead would be acceptable? ``` validates_length_of :password, within: password_length, allow_blank: true, if: -> (x) { x.respond_to?(:password) }...
I also got this same weird error in a Rails 4.2 app in my development environment. I was able to get the migrations to run on my test environment by...
Sure, the main thing is you need to have some migrations that already exist in the database. Starting from a fresh database doesn't seem to trigger it. Here's some exact...
I don't know if it would fix it or not, but if it's the `ActiveRecord::Base.connection.table_exists?` that is causing the problem, you could do a raw SQL migration with `execute` and...
Ah, gotcha. Might be simplest to just take the sort off of that column completely, since the actual data can be completely arbitrary based on whatever the end user is...
Not a Dwolla employee but I've been customizing the gem a bit lately. I think you need to customize the underlying Faraday instance in order to change the request param...