Anson Hoyt

Results 20 comments of Anson Hoyt

Another place to compare, ActiveAdmin resolved this by replacing their dependency on sass-rails with a dependency on sass. See issue https://github.com/activeadmin/activeadmin/issues/5031 and pull request https://github.com/activeadmin/activeadmin/pull/5037.

@supercodepoet took care of this in https://github.com/FortAwesome/font-awesome-sass/commit/02d7e2dfbf3de6228df618f166b30ae4001e5240 by removing the development dependency on `sass-rails`. Later in https://github.com/FortAwesome/font-awesome-sass/commit/2cfca7ba60cd7bc065bcabfdbc6c476ca1a2f9ad, he replaced runtime dependency on `sass` (now that `ruby-sass` is deprecated) with `sassc`....

Works for me again! This appears to be resolved by [Rails 6.0.3](https://github.com/rails/rails/releases/tag/v6.0.3) which makes `Rails::Application#eager_load!` available again: > * Rails::Application#eager_load! is available again to load application code manually as it...

@weiserma this error looks related to Rails 6.1 removing `Module#parent` in https://github.com/rails/rails/commit/167b4153cac0069a21e0bb9689cb16f34f6abbaa. I needed to handle this for exception_notifier, so maybe that's why I didn't notice rails-erd needing it? 😄...

I was trying this too, but learned this is how RN `` works. It will work if you wrap the `` in a `` (which allows flexbox layout) instead of...

Thanks Adrien! I'll keep messing around and add a PR if I figure something out. (I'm pretty green on Stimulus and Flatpickr, so I don't mind if someone beats me...

I don't plan to wait 5 hours 😅, but I may be running into this too as I update a very small app. The OP's report seems clear, but in...

The workaround helped. 🙏 `bundle add rails --version '~> 7.0.3'` quickly showed `Bundler could not find compatible versions`: ```sh Fetching gem metadata from https://rubygems.org/......... Resolving dependencies..... Bundler could not find...

@theycallmeswift Hmmm, `type_for_attribute` would be nice for ActiveModel generally. Have you considered a Rails PR to move [`type_for_attribute`](https://edgeapi.rubyonrails.org/classes/ActiveRecord/ModelSchema/ClassMethods.html#method-i-type_for_attribute) from ActiveRecord up to ActiveModel? I'm not sure if it would be...

Thank you! This solves one of our regular first-deploy issues! ❤️