skip to Main Content

How to stitch together two arrays based on a common set of keys in Ruby – Magento

I have two arrays of hashes which are related by a common set of keys: Array 1 is: [ {0=>"pmet-add-install-module-timings.patch"}, {1=>"pmet-change-sample-data-load-order.patch"}, {2=>"pmet-configurable-recurring.patch"}, {3=>"pmet-consumers-run-staggered-by-sleep.patch"}, {4=>"pmet-dynamic-block-segment-display.patch"}, {5=>"pmet-fix-admin-label-word-breaking.patch"}, {6=>"pmet-fix-invalid-module-dependencies.patch"}, {7=>"pmet-fix-invalid-sample-data-module-dependencies.patch"}, {8=>"pmet-fix-module-loader-algorithm.patch"}, {9=>"pmet-fix-sample-data-code-generator.patch"}, {10=>"pmet-remove-id-requirement-from-layout-update-file.patch"}, {11=>"pmet-specify-store-id-for-order.patch"}, {12=>"pmet-staging-preview-js-fix.patch"}, {13=>"pmet-stop-catching-sample-data-errrors-during-install.patch"}, {14=>"pmet-visitor-segment.patch"} ] Array 2 is: [ {0=>"magento2-base"},…

VIEW QUESTION
Back To Top
Search