Albert Jankowski
Albert Jankowski
I believe Milia is not compatible with with Rails 6 at this time. When you try to add it in Rails 6 it adds version `0.3.0` but if you try...
I'm also running into a need for this. I want to make sure `.carousel-inner > .item` does not get added to my style sheets. It is messing up my carousel...
I ran into the same issue today. I had hirak/prestissimo (0.3.8) and once I removed it the issue went away.
I tested the new patch and it works. The problem is that I can't get it to fail with the current version. @mugetsu What browser did you see this issue...
Hmm, do you have anything custom set up or just default setup? I'm trying to figure out why this doesn't work for you: ```twig $backgroundObj.css({ backgroundPosition: coords }); ``` But...
@jsibley2 It looks like the module wan't uninstalled prior to the removal. You may want to add it back in, uninstall it, and then remove it.
I experienced this as well. I removed the constants in https://github.com/rails-lambda/lamby/pull/173 and it fixed the issue.
I'm also having an issue getting my app to work in Lambda. I see the following error in Cloudwatch: ``` /usr/local/lib/ruby/3.2.0/bundler/definition.rb:524:in `materialize': Could not find web-console-4.2.1, capybara-3.39.2, selenium-webdriver-4.10.0, webdrivers-5.3.1, bindex-0.8.1,...
I was able to get past this issue (although ran into another issue unrelated) by bundling in a docker container because we need the gems bundled for Linux. **Created a...
Perhaps you can use [Concurrency controls](https://github.com/rails/solid_queue?tab=readme-ov-file#concurrency-controls) to prevent the issue. ```ruby class ContinuousSearchJob < ApplicationJob limits_concurrency to: 1, key: 'ContinuousSearchJob', duration: 300 def perform keyword = Keyword.first if keyword keyword.insert_playlists...