Javinto
Javinto
When I run a db:rollback to rollback migrations generated by an extension it fails with the exception > wrong number of arguments (given 1, expected 0) triggered by the following...
On exiting Sidekiq the following warning is issued: WARN: `config.options[:key] = value` is deprecated, use `config[:key] = value`: ["/Users/javinto/.rvm/gems/ruby-3.1.2@app/gems/sidekiq-limit_fetch-4.2.0/lib/sidekiq/limit_fetch.rb:37:in `bulk_requeue'", "/Users/javinto/.rvm/gems/ruby-3.1.2@app/gems/sidekiq-6.5.1/lib/sidekiq/launcher.rb:60:in `stop'"] Ruby 3.1.2 Sidekiq 6.5.1 Sidekiq-limit_fetch 4.2.0
If find this an unexpected result from the #insert_at(pos) method: Suppose you have: 1 A 2 B 3 C 4 D 5 E 6 F 7 G And you move...
I had a RefineryCMS 2.x installation with a Projects extension where I had added the PageImages extension to the projects only: ``` config.enable_for = [ {model: "Refinery::Projects::Project", tab: "Refinery::Projects::Tab"} ]...
On initializing the PageImage extension it says: ``` def self.register(tab) tab.name = ::I18n.t(:'refinery.plugins.refinery_page_images.tab_name') tab.partial = "/refinery/admin/pages/tabs/images" end ``` Unfortunately the tab.name is not correctly translated as the preferred locale has...
### Steps to reproduce Create a simple model with has_one_attached :profile, strict_loading: true Then create the model with a such a profile (file). An ActiveRecord::StrictLoadingViolationError is raised while the model...
I have code like in attached image. If I push the button "Submit without validation" then my form does not get submitted. It doesn't validate neither. If I exclude jquery-ujs...