avo 3.30.4 → 4.0.0.beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile +18 -1
- data/Gemfile.lock +257 -174
- data/README.md +1 -1
- data/app/assets/builds/avo/application.css +13979 -0
- data/app/assets/builds/avo/application.js +1160 -0
- data/app/assets/builds/avo/application.js.map +7 -0
- data/app/assets/builds/avo/late-registration.js +2 -0
- data/app/assets/builds/avo/late-registration.js.map +7 -0
- data/app/assets/config/avo_manifest.js +2 -1
- data/app/assets/images/avo/placeholder.svg +1 -0
- data/app/assets/stylesheets/application.css +250 -0
- data/app/assets/stylesheets/css/button-group.css +23 -0
- data/app/assets/stylesheets/css/components/avatar.css +128 -0
- data/app/assets/stylesheets/css/components/breadcrumbs.css +43 -0
- data/app/assets/stylesheets/css/components/button.css +343 -0
- data/app/assets/stylesheets/css/components/color_scheme_switcher.css +226 -0
- data/app/assets/stylesheets/css/components/discreet_information.css +49 -0
- data/app/assets/stylesheets/css/components/field-wrapper.css +107 -0
- data/app/assets/stylesheets/css/components/grid.css +120 -0
- data/app/assets/stylesheets/css/components/input.css +312 -0
- data/app/assets/stylesheets/css/components/modal.css +228 -0
- data/app/assets/stylesheets/css/components/tooltip.css +25 -0
- data/app/assets/stylesheets/css/components/ui/badge.css +143 -0
- data/app/assets/stylesheets/css/components/ui/card.css +95 -0
- data/app/assets/stylesheets/css/components/ui/checkbox.css +50 -0
- data/app/assets/stylesheets/css/components/ui/description_list.css +3 -0
- data/app/assets/stylesheets/css/components/ui/dropdown.css +68 -0
- data/app/assets/stylesheets/css/components/ui/file_upload_input.css +94 -0
- data/app/assets/stylesheets/css/components/ui/file_upload_item.css +78 -0
- data/app/assets/stylesheets/css/components/ui/panel.css +59 -0
- data/app/assets/stylesheets/css/components/ui/panel_header.css +48 -0
- data/app/assets/stylesheets/css/components/ui/radio.css +22 -0
- data/app/assets/stylesheets/css/components/ui/tabs.css +74 -0
- data/app/assets/stylesheets/css/css-animations.css +54 -0
- data/app/assets/stylesheets/css/fields/code.css +75 -9
- data/app/assets/stylesheets/css/fields/easy-mde.css +7 -0
- data/app/assets/stylesheets/css/fields/key_value.css +97 -0
- data/app/assets/stylesheets/css/fields/progress.css +4 -4
- data/app/assets/stylesheets/css/fields/status.css +7 -1
- data/app/assets/stylesheets/css/fields/tags.css +33 -16
- data/app/assets/stylesheets/css/fields/tiptap.css +17 -15
- data/app/assets/stylesheets/css/fields/trix.css +62 -2
- data/app/assets/stylesheets/css/fonts.css +24 -24
- data/app/assets/stylesheets/css/layout.css +135 -0
- data/app/assets/stylesheets/css/pagination.css +114 -78
- data/app/assets/stylesheets/css/resource-controls.css +13 -0
- data/app/assets/stylesheets/css/search.css +22 -12
- data/app/assets/stylesheets/css/sidebar.css +310 -24
- data/app/assets/stylesheets/css/table.css +60 -0
- data/app/assets/stylesheets/css/tooltips.css +1 -1
- data/app/assets/stylesheets/css/typography.css +10 -1
- data/app/assets/stylesheets/css/variables.css +318 -0
- data/app/assets/svgs/avo/moon-plus-plus.svg +1 -0
- data/app/components/avo/actions_component.html.erb +30 -36
- data/app/components/avo/actions_component.rb +8 -11
- data/app/components/avo/alert_component.html.erb +3 -3
- data/app/components/avo/alert_component.rb +1 -1
- data/app/components/avo/asset_manager/javascript_component.html.erb +1 -2
- data/app/components/avo/backtrace_alert_component.html.erb +4 -4
- data/app/components/avo/base_component.rb +3 -4
- data/app/components/avo/breadcrumb_element_component.html.erb +17 -0
- data/app/components/avo/breadcrumb_element_component.rb +21 -0
- data/app/components/avo/breadcrumbs_component.html.erb +19 -0
- data/app/components/avo/breadcrumbs_component.rb +5 -0
- data/app/components/avo/button_component.rb +20 -126
- data/app/components/avo/clipboard_component.html.erb +3 -2
- data/app/components/avo/clipboard_component.rb +1 -1
- data/app/components/avo/component_missing_component.rb +11 -0
- data/app/components/avo/cover_component.html.erb +3 -0
- data/app/components/avo/cover_component.rb +25 -0
- data/app/components/avo/debug/status_component.html.erb +59 -0
- data/app/components/avo/debug/status_component.rb +30 -0
- data/app/components/avo/description_list_component.rb +11 -0
- data/app/components/avo/discreet_information_component.html.erb +31 -6
- data/app/components/avo/discreet_information_component.rb +23 -32
- data/app/components/avo/divider_component.html.erb +2 -2
- data/app/components/avo/empty_state_component.html.erb +2 -9
- data/app/components/avo/empty_state_component.rb +0 -8
- data/app/components/avo/field_wrapper_component.html.erb +21 -22
- data/app/components/avo/field_wrapper_component.rb +9 -18
- data/app/components/avo/fields/avatar_field/index_component.html.erb +9 -0
- data/app/components/avo/fields/avatar_field/index_component.rb +4 -0
- data/app/components/avo/fields/badge_field/index_component.html.erb +7 -1
- data/app/components/avo/fields/badge_field/show_component.html.erb +6 -1
- data/app/components/avo/fields/belongs_to_field/edit_component.html.erb +16 -14
- data/app/components/avo/fields/belongs_to_field/edit_component.rb +13 -3
- data/app/components/avo/fields/boolean_field/edit_component.html.erb +2 -2
- data/app/components/avo/fields/boolean_group_field/edit_component.html.erb +1 -1
- data/app/components/avo/fields/boolean_group_field/edit_component.rb +2 -3
- data/app/components/avo/fields/code_field/show_component.html.erb +1 -1
- data/app/components/avo/fields/common/boolean_check_component.rb +3 -3
- data/app/components/avo/fields/common/boolean_group_component.html.erb +2 -2
- data/app/components/avo/fields/common/files/controls_component.html.erb +30 -27
- data/app/components/avo/fields/common/files/controls_component.rb +0 -1
- data/app/components/avo/fields/common/files/list_viewer_component.html.erb +4 -5
- data/app/components/avo/fields/common/files/view_type/grid_item_component.html.erb +1 -1
- data/app/components/avo/fields/common/files/view_type/list_item_component.html.erb +7 -19
- data/app/components/avo/fields/common/heading_component.html.erb +2 -2
- data/app/components/avo/fields/common/heading_component.rb +1 -1
- data/app/components/avo/fields/common/key_value_component.html.erb +20 -24
- data/app/components/avo/fields/common/nested_field_component.html.erb +1 -1
- data/app/components/avo/fields/common/nested_field_component.rb +1 -1
- data/app/components/avo/fields/common/progress_bar_component.html.erb +2 -2
- data/app/components/avo/fields/common/stars_component.html.erb +1 -1
- data/app/components/avo/fields/common/status_viewer_component.html.erb +4 -10
- data/app/components/avo/fields/date_field/edit_component.html.erb +14 -1
- data/app/components/avo/fields/date_time_field/edit_component.html.erb +3 -3
- data/app/components/avo/fields/easy_mde_field/show_component.html.erb +1 -1
- data/app/components/avo/fields/edit_component.rb +9 -5
- data/app/components/avo/fields/file_field/edit_component.html.erb +14 -6
- data/app/components/avo/fields/files_field/edit_component.html.erb +11 -4
- data/app/components/avo/fields/has_one_field/show_component.html.erb +10 -9
- data/app/components/avo/fields/heading_field/edit_component.html.erb +1 -1
- data/app/components/avo/fields/heading_field/show_component.html.erb +2 -2
- data/app/components/avo/fields/password_field/edit_component.html.erb +5 -7
- data/app/components/avo/fields/progress_bar_field/edit_component.html.erb +1 -1
- data/app/components/avo/fields/radio_field/edit_component.html.erb +1 -1
- data/app/components/avo/fields/show_component.rb +4 -7
- data/app/components/avo/fields/stars_field/edit_component.html.erb +3 -4
- data/app/components/avo/fields/tags_field/edit_component.html.erb +1 -1
- data/app/components/avo/fields/tags_field/tag_component.html.erb +7 -8
- data/app/components/avo/fields/time_field/edit_component.html.erb +3 -3
- data/app/components/avo/fields/tiptap_field/edit_component.html.erb +11 -11
- data/app/components/avo/fields/tiptap_field/show_component.html.erb +4 -4
- data/app/components/avo/fields/trix_field/edit_component.html.erb +2 -2
- data/app/components/avo/filters_component.html.erb +8 -16
- data/app/components/avo/index/field_wrapper_component.html.erb +9 -2
- data/app/components/avo/index/field_wrapper_component.rb +0 -16
- data/app/components/avo/index/grid_cover_empty_state_component.html.erb +16 -2
- data/app/components/avo/index/grid_cover_empty_state_component.rb +90 -0
- data/app/components/avo/index/grid_item_component.html.erb +29 -12
- data/app/components/avo/index/grid_item_component.rb +12 -10
- data/app/components/avo/index/resource_controls_component.html.erb +1 -1
- data/app/components/avo/index/resource_controls_component.rb +7 -17
- data/app/components/avo/index/resource_controls_dropdown_component.html.erb +3 -0
- data/app/components/avo/index/resource_controls_dropdown_component.rb +81 -0
- data/app/components/avo/index/table_row_component.html.erb +11 -11
- data/app/components/avo/items/panel_component.html.erb +8 -18
- data/app/components/avo/items/panel_component.rb +0 -20
- data/app/components/avo/items/switcher_component.html.erb +60 -1
- data/app/components/avo/items/switcher_component.rb +10 -5
- data/app/components/avo/items/visible_items_component.html.erb +2 -1
- data/app/components/avo/items/visible_items_component.rb +1 -0
- data/app/components/avo/media_library/item_details_component.html.erb +2 -2
- data/app/components/avo/media_library/list_component.html.erb +24 -19
- data/app/components/avo/media_library/list_component.rb +2 -2
- data/app/components/avo/media_library/list_item_component.html.erb +3 -3
- data/app/components/avo/modal_component.html.erb +52 -20
- data/app/components/avo/modal_component.rb +7 -12
- data/app/components/avo/paginator_component.html.erb +46 -33
- data/app/components/avo/paginator_component.rb +10 -5
- data/app/components/avo/panel_name_component.html.erb +1 -1
- data/app/components/avo/profile_item_component.html.erb +4 -4
- data/app/components/avo/profile_item_component.rb +2 -4
- data/app/components/avo/referrer_params_component.html.erb +1 -1
- data/app/components/avo/resource_component.rb +8 -19
- data/app/components/avo/resource_listing_component.html.erb +22 -0
- data/app/components/avo/resource_listing_component.rb +28 -0
- data/app/components/avo/resource_sidebar_component.html.erb +2 -2
- data/app/components/avo/resource_sidebar_component.rb +0 -4
- data/app/components/avo/row_component.html.erb +1 -1
- data/app/components/avo/row_selector_component.html.erb +2 -4
- data/app/components/avo/row_selector_component.rb +0 -1
- data/app/components/avo/search_overlay_component.html.erb +6 -0
- data/app/components/avo/search_overlay_component.rb +2 -0
- data/app/components/avo/sidebar/base_item_component.rb +9 -9
- data/app/components/avo/sidebar/group_component.html.erb +23 -27
- data/app/components/avo/sidebar/group_component.rb +4 -0
- data/app/components/avo/sidebar/link_component.html.erb +30 -7
- data/app/components/avo/sidebar/link_component.rb +30 -2
- data/app/components/avo/sidebar/section_component.html.erb +31 -11
- data/app/components/avo/sidebar/section_component.rb +1 -3
- data/app/components/avo/sidebar_component.html.erb +35 -36
- data/app/components/avo/sidebar_component.rb +16 -0
- data/app/components/avo/sidebar_profile_component.html.erb +27 -36
- data/app/components/avo/sidebar_profile_component.rb +14 -0
- data/app/components/avo/tab_group_component.html.erb +21 -9
- data/app/components/avo/tab_group_component.rb +54 -15
- data/app/components/avo/turbo_frame_wrapper_component.html.erb +4 -8
- data/app/components/avo/turbo_frame_wrapper_component.rb +9 -0
- data/app/components/avo/u_i/avatar_component.html.erb +11 -0
- data/app/components/avo/u_i/avatar_component.rb +61 -0
- data/app/components/avo/u_i/badge_component.html.erb +9 -0
- data/app/components/avo/u_i/badge_component.rb +35 -0
- data/app/components/avo/u_i/card_component.html.erb +29 -0
- data/app/components/avo/u_i/card_component.rb +65 -0
- data/app/components/avo/u_i/dropdown_component.html.erb +14 -0
- data/app/components/avo/u_i/dropdown_component.rb +26 -0
- data/app/components/avo/u_i/dropdown_menu_component.html.erb +16 -0
- data/app/components/avo/u_i/dropdown_menu_component.rb +8 -0
- data/app/components/avo/u_i/file_upload_input_component.html.erb +26 -0
- data/app/components/avo/u_i/file_upload_input_component.rb +15 -0
- data/app/components/avo/u_i/file_upload_item_component.html.erb +48 -0
- data/app/components/avo/u_i/file_upload_item_component.rb +17 -0
- data/app/components/avo/u_i/icon_button_component.html.erb +7 -0
- data/app/components/avo/u_i/icon_button_component.rb +22 -0
- data/app/components/avo/u_i/panel_component.html.erb +49 -0
- data/app/components/avo/u_i/panel_component.rb +29 -0
- data/app/components/avo/u_i/panel_header_component.html.erb +37 -0
- data/app/components/avo/u_i/panel_header_component.rb +24 -0
- data/app/components/avo/u_i/search_input_component.html.erb +28 -0
- data/app/components/avo/u_i/search_input_component.rb +12 -0
- data/app/components/avo/u_i/tabs/tab_component.html.erb +26 -0
- data/app/components/avo/u_i/tabs/tab_component.rb +25 -0
- data/app/components/avo/u_i/tabs/tabs_component.html.erb +7 -0
- data/app/components/avo/u_i/tabs/tabs_component.rb +13 -0
- data/app/components/avo/view_types/base_view_type_component.rb +26 -0
- data/app/components/avo/view_types/grid_component.html.erb +18 -0
- data/app/components/avo/view_types/grid_component.rb +4 -0
- data/app/components/avo/view_types/map_component.html.erb +17 -0
- data/app/components/avo/view_types/map_component.rb +110 -0
- data/app/components/avo/view_types/table_component.html.erb +63 -0
- data/app/components/avo/{index/resource_table_component.rb → view_types/table_component.rb} +1 -10
- data/app/components/avo/views/resource_edit_component.html.erb +12 -18
- data/app/components/avo/views/resource_edit_component.rb +1 -27
- data/app/components/avo/views/resource_index_component.html.erb +97 -74
- data/app/components/avo/views/resource_index_component.rb +23 -3
- data/app/components/avo/views/resource_show_component.html.erb +4 -2
- data/app/components/avo/views/resource_show_component.rb +1 -4
- data/app/controllers/avo/associations_controller.rb +1 -1
- data/app/controllers/avo/base_application_controller.rb +7 -5
- data/app/controllers/avo/base_controller.rb +139 -40
- data/app/controllers/avo/debug_controller.rb +0 -29
- data/app/controllers/avo/media_library_controller.rb +17 -1
- data/app/controllers/avo/search_controller.rb +5 -0
- data/app/controllers/concerns/avo/initializes_avo.rb +7 -8
- data/app/helpers/avo/application_helper.rb +60 -46
- data/app/helpers/avo/turbo_stream_actions_helper.rb +10 -1
- data/app/helpers/avo/url_helpers.rb +3 -2
- data/app/javascript/{avo.base.js → application.js} +9 -18
- data/app/javascript/js/application.js +40 -0
- data/app/javascript/js/controllers/action_controller.js +4 -4
- data/app/javascript/js/controllers/actions_overflow_controller.js +21 -6
- data/app/javascript/js/controllers/color_scheme_switcher_controller.js +226 -0
- data/app/javascript/js/controllers/dropdown_menu_controller.js +42 -0
- data/app/javascript/js/controllers/fields/code_field_controller.js +20 -3
- data/app/javascript/js/controllers/fields/easy_mde_controller.js +23 -1
- data/app/javascript/js/controllers/fields/key_value_controller.js +43 -39
- data/app/javascript/js/controllers/fields/panel_refresh_controller.js +4 -0
- data/app/javascript/js/controllers/fields/tags_field_controller.js +2 -2
- data/app/javascript/js/controllers/fields/tags_field_helpers.js +4 -6
- data/app/javascript/js/controllers/grid_cover_empty_state_controller.js +42 -0
- data/app/javascript/js/controllers/item_selector_controller.js +0 -2
- data/app/javascript/js/controllers/loading_button_controller.js +1 -5
- data/app/javascript/js/controllers/map_dark_mode_controller.js +131 -0
- data/app/javascript/js/controllers/menu_controller.js +38 -16
- data/app/javascript/js/controllers/modal_controller.js +16 -0
- data/app/javascript/js/controllers/modal_size_controller.js +83 -0
- data/app/javascript/js/controllers/nested_form_controller.js +2 -2
- data/app/javascript/js/controllers/password_visibility_controller.js +13 -0
- data/app/javascript/js/controllers/preview_controller.js +2 -2
- data/app/javascript/js/controllers/resource_search_controller.js +123 -0
- data/app/javascript/js/controllers/search_controller.js +10 -29
- data/app/javascript/js/controllers/sidebar_controller.js +29 -9
- data/app/javascript/js/controllers/table_row_controller.js +28 -0
- data/app/javascript/js/controllers/tippy_controller.js +1 -1
- data/app/javascript/js/controllers/toggle_controller.js +40 -5
- data/app/javascript/js/controllers.js +14 -2
- data/app/javascript/js/custom-stream-actions.js +10 -8
- data/app/views/avo/actions/show.html.erb +14 -10
- data/app/views/avo/base/_boolean_filter.html.erb +1 -1
- data/app/views/avo/base/_date_time_filter.html.erb +3 -3
- data/app/views/avo/base/_multiple_select_filter.html.erb +1 -1
- data/app/views/avo/base/_new_via_belongs_to.html.erb +2 -3
- data/app/views/avo/base/_text_filter.html.erb +1 -1
- data/app/views/avo/base/preview.html.erb +5 -4
- data/app/views/avo/debug/status.html.erb +5 -92
- data/app/views/avo/debug/status.text.erb +0 -2
- data/app/views/avo/home/_actions.html.erb +1 -1
- data/app/views/avo/home/_dashboards.html.erb +1 -1
- data/app/views/avo/home/_filters.html.erb +1 -1
- data/app/views/avo/home/_resources.html.erb +2 -2
- data/app/views/avo/home/failed_to_load.html.erb +2 -2
- data/app/views/avo/home/index.html.erb +25 -25
- data/app/views/avo/media_library/_form.html.erb +43 -28
- data/app/views/avo/media_library/show.html.erb +7 -3
- data/app/views/avo/modal/_size_selector.html.erb +46 -0
- data/app/views/avo/partials/_alerts.html.erb +1 -1
- data/app/views/avo/partials/_color_scheme_switcher.html.erb +106 -0
- data/app/views/avo/partials/_color_theme_override.html.erb +49 -0
- data/app/views/avo/partials/_confirm_dialog.html.erb +19 -17
- data/app/views/avo/partials/_custom_tools_alert.html.erb +6 -6
- data/app/views/avo/partials/_footer.html.erb +1 -1
- data/app/views/avo/partials/_header.html.erb +1 -1
- data/app/views/avo/partials/_javascript.html.erb +0 -2
- data/app/views/avo/partials/_navbar.html.erb +53 -8
- data/app/views/avo/partials/_sortable_component.html.erb +1 -1
- data/app/views/avo/partials/_table_header.html.erb +28 -19
- data/app/views/avo/partials/_view_toggle_button.html.erb +6 -29
- data/app/views/avo/partials/distribution_chart.html.erb +2 -2
- data/app/views/avo/private/_links_and_buttons.html.erb +12 -8
- data/app/views/avo/private/design.html.erb +8 -4
- data/app/views/avo/sidebar/_license_warning.html.erb +3 -3
- data/app/views/layouts/avo/application.html.erb +39 -17
- data/app/views/layouts/avo/modal.html.erb +7 -0
- data/avo.gemspec +3 -4
- data/config/i18n-tasks.yml +1 -1
- data/config/importmap.rb +1 -0
- data/config/initializers/pagy.rb +5 -25
- data/config/routes/dynamic_routes.rb +4 -0
- data/config/routes.rb +6 -7
- data/db/factories.rb +14 -0
- data/lib/avo/asset_manager.rb +2 -0
- data/lib/avo/avatar.rb +7 -0
- data/lib/avo/base_action.rb +16 -4
- data/lib/avo/concerns/breadcrumbs.rb +7 -66
- data/lib/avo/concerns/form_builder.rb +41 -0
- data/lib/avo/concerns/{has_profile_photo.rb → has_avatar.rb} +8 -4
- data/lib/avo/concerns/{has_cover_photo.rb → has_cover.rb} +4 -4
- data/lib/avo/concerns/has_description.rb +9 -0
- data/lib/avo/concerns/has_item_type.rb +6 -2
- data/lib/avo/concerns/has_items.rb +43 -58
- data/lib/avo/concerns/pagination.rb +29 -19
- data/lib/avo/concerns/row_controls_configuration.rb +22 -15
- data/lib/avo/configuration/branding.rb +7 -7
- data/lib/avo/configuration.rb +92 -45
- data/lib/avo/{cover_photo.rb → cover.rb} +2 -2
- data/lib/avo/current.rb +0 -11
- data/lib/avo/discreet_information.rb +52 -29
- data/lib/avo/dsl/field_parser.rb +1 -1
- data/lib/avo/engine.rb +41 -8
- data/lib/avo/error_manager.rb +1 -1
- data/lib/avo/fields/avatar_field.rb +19 -0
- data/lib/avo/fields/badge_field.rb +23 -3
- data/lib/avo/fields/base_field.rb +46 -1
- data/lib/avo/fields/concerns/dom_id.rb +17 -0
- data/lib/avo/fields/concerns/file_authorization.rb +4 -0
- data/lib/avo/fields/concerns/has_html_attributes.rb +1 -1
- data/lib/avo/fields/concerns/is_searchable.rb +2 -5
- data/lib/avo/fields/concerns/nested.rb +1 -1
- data/lib/avo/fields/files_field.rb +2 -2
- data/lib/avo/fields/frame_base_field.rb +2 -2
- data/lib/avo/fields/id_field.rb +5 -1
- data/lib/avo/fields/progress_bar_field.rb +1 -1
- data/lib/avo/fields/text_field.rb +1 -1
- data/lib/avo/photo_object.rb +12 -1
- data/lib/avo/plugin_manager.rb +4 -0
- data/lib/avo/resources/base.rb +33 -21
- data/lib/avo/resources/controls/actions_list.rb +3 -3
- data/lib/avo/resources/controls/base_control.rb +1 -1
- data/lib/avo/resources/items/card.rb +16 -0
- data/lib/avo/resources/items/header.rb +11 -0
- data/lib/avo/resources/items/holder.rb +18 -23
- data/lib/avo/resources/items/item_group.rb +5 -7
- data/lib/avo/resources/items/sidebar.rb +5 -9
- data/lib/avo/resources/items/tab.rb +8 -8
- data/lib/avo/resources/items/tab_group.rb +8 -10
- data/lib/avo/resources/resource_manager.rb +2 -1
- data/lib/avo/services/hq_reporter.rb +102 -0
- data/lib/avo/services/telemetry_service.rb +0 -1
- data/lib/avo/test_helpers.rb +36 -22
- data/lib/avo/u_i_instance.rb +60 -0
- data/lib/avo/version.rb +1 -1
- data/lib/avo/view_inquirer.rb +6 -1
- data/lib/avo/view_types/view_type_manager.rb +70 -0
- data/lib/avo.rb +30 -45
- data/lib/generators/avo/action_generator.rb +1 -1
- data/lib/generators/avo/resource_generator.rb +43 -0
- data/lib/generators/avo/resource_tool_generator.rb +1 -1
- data/lib/generators/avo/tailwindcss/install_generator.rb +0 -6
- data/lib/generators/avo/templates/cards/partial_card_partial.tt +1 -1
- data/lib/generators/avo/templates/initializer/avo.tt +7 -9
- data/lib/generators/avo/templates/locales/avo.ar.yml +25 -0
- data/lib/generators/avo/templates/locales/avo.de.yml +25 -0
- data/lib/generators/avo/templates/locales/avo.en.yml +25 -0
- data/lib/generators/avo/templates/locales/avo.es.yml +25 -0
- data/lib/generators/avo/templates/locales/avo.fr.yml +25 -0
- data/lib/generators/avo/templates/locales/avo.it.yml +25 -0
- data/lib/generators/avo/templates/locales/avo.ja.yml +25 -0
- data/lib/generators/avo/templates/locales/avo.nb.yml +25 -0
- data/lib/generators/avo/templates/locales/avo.nl.yml +25 -0
- data/lib/generators/avo/templates/locales/avo.nn.yml +25 -0
- data/lib/generators/avo/templates/locales/avo.pl.yml +25 -0
- data/lib/generators/avo/templates/locales/avo.pt-BR.yml +25 -0
- data/lib/generators/avo/templates/locales/avo.pt.yml +25 -0
- data/lib/generators/avo/templates/locales/avo.ro.yml +25 -0
- data/lib/generators/avo/templates/locales/avo.ru.yml +25 -0
- data/lib/generators/avo/templates/locales/avo.tr.yml +25 -0
- data/lib/generators/avo/templates/locales/{avo.uk.yml → avo.ua.yml} +26 -1
- data/lib/generators/avo/templates/locales/avo.zh-TW.yml +25 -0
- data/lib/generators/avo/templates/locales/avo.zh.yml +25 -0
- data/lib/generators/avo/templates/resource/resource.tt +10 -1
- data/lib/generators/avo/templates/resource_tools/partial.tt +20 -22
- data/lib/generators/avo/templates/tailwindcss/avo.tailwind.css +1 -3
- data/lib/generators/avo/templates/tailwindcss/tailwind.config.js +0 -7
- data/lib/generators/avo/templates/tool/view.tt +14 -16
- data/lib/generators/avo/tool_generator.rb +3 -3
- data/lib/generators/avo/version_generator.rb +1 -1
- data/lib/tasks/avo_tasks.rake +29 -25
- metadata +145 -97
- data/app/assets/stylesheets/avo.base.css +0 -130
- data/app/assets/stylesheets/css/breadcrumbs.css +0 -16
- data/app/assets/stylesheets/css/buttons.css +0 -19
- data/app/assets/stylesheets/css/tailwindcss/base.css +0 -1
- data/app/assets/stylesheets/css/tailwindcss/components.css +0 -1
- data/app/assets/stylesheets/css/tailwindcss/utilities.css +0 -1
- data/app/assets/svgs/avo/arrow-down.svg +0 -3
- data/app/assets/svgs/avo/arrow-up.svg +0 -3
- data/app/assets/svgs/avo/detach.svg +0 -8
- data/app/assets/svgs/avo/download-solid-reversed.svg +0 -3
- data/app/assets/svgs/avo/download-solid.svg +0 -3
- data/app/assets/svgs/avo/edit.svg +0 -5
- data/app/assets/svgs/avo/editor-bold.svg +0 -1
- data/app/assets/svgs/avo/editor-italic.svg +0 -1
- data/app/assets/svgs/avo/editor-link.svg +0 -1
- data/app/assets/svgs/avo/editor-list.svg +0 -1
- data/app/assets/svgs/avo/editor-strike.svg +0 -1
- data/app/assets/svgs/avo/editor-underline.svg +0 -1
- data/app/assets/svgs/avo/eye.svg +0 -1
- data/app/assets/svgs/avo/trash-sm.svg +0 -3
- data/app/assets/svgs/avo/trash.svg +0 -7
- data/app/components/avo/cover_photo_component.html.erb +0 -3
- data/app/components/avo/cover_photo_component.rb +0 -19
- data/app/components/avo/fields/common/badge_viewer_component.html.erb +0 -1
- data/app/components/avo/fields/common/badge_viewer_component.rb +0 -33
- data/app/components/avo/index/resource_grid_component.html.erb +0 -23
- data/app/components/avo/index/resource_grid_component.rb +0 -10
- data/app/components/avo/index/resource_map_component.html.erb +0 -16
- data/app/components/avo/index/resource_map_component.rb +0 -114
- data/app/components/avo/index/resource_table_component.html.erb +0 -52
- data/app/components/avo/panel_component.html.erb +0 -63
- data/app/components/avo/panel_component.rb +0 -43
- data/app/components/avo/panel_header_component.html.erb +0 -42
- data/app/components/avo/panel_header_component.rb +0 -31
- data/app/components/avo/profile_photo_component.html.erb +0 -6
- data/app/components/avo/profile_photo_component.rb +0 -9
- data/app/components/avo/sidebar/heading_component.html.erb +0 -21
- data/app/components/avo/sidebar/heading_component.rb +0 -9
- data/app/components/avo/tab_switcher_component.html.erb +0 -20
- data/app/components/avo/tab_switcher_component.rb +0 -45
- data/app/views/avo/base/close_modal_and_reload_field.turbo_stream.erb +0 -8
- data/app/views/avo/debug/report.html.erb +0 -37
- data/app/views/avo/partials/_panel_breadcrumbs.html.erb +0 -3
- data/app/views/avo/partials/_resource_search.html.erb +0 -16
- data/lib/avo/licensing/community_license.rb +0 -6
- data/lib/avo/licensing/h_q.rb +0 -202
- data/lib/avo/licensing/license.rb +0 -76
- data/lib/avo/licensing/license_manager.rb +0 -24
- data/lib/avo/licensing/nil_license.rb +0 -14
- data/lib/avo/licensing/pro_license.rb +0 -20
- data/lib/avo/licensing/request.rb +0 -20
- data/lib/avo/profile_photo.rb +0 -7
- data/lib/avo/services/debug_service.rb +0 -107
- data/public/avo-assets/placeholder.svg +0 -1
- data/tailwind.preset.js +0 -171
- /data/{public/avo-assets → app/assets/images/avo}/favicon.ico +0 -0
- /data/{public/avo-assets → app/assets/images/avo}/fonts/inter-v7-latin-500.eot +0 -0
- /data/{public/avo-assets → app/assets/images/avo}/fonts/inter-v7-latin-500.svg +0 -0
- /data/{public/avo-assets → app/assets/images/avo}/fonts/inter-v7-latin-500.ttf +0 -0
- /data/{public/avo-assets → app/assets/images/avo}/fonts/inter-v7-latin-500.woff +0 -0
- /data/{public/avo-assets → app/assets/images/avo}/fonts/inter-v7-latin-500.woff2 +0 -0
- /data/{public/avo-assets → app/assets/images/avo}/fonts/inter-v7-latin-600.eot +0 -0
- /data/{public/avo-assets → app/assets/images/avo}/fonts/inter-v7-latin-600.svg +0 -0
- /data/{public/avo-assets → app/assets/images/avo}/fonts/inter-v7-latin-600.ttf +0 -0
- /data/{public/avo-assets → app/assets/images/avo}/fonts/inter-v7-latin-600.woff +0 -0
- /data/{public/avo-assets → app/assets/images/avo}/fonts/inter-v7-latin-600.woff2 +0 -0
- /data/{public/avo-assets → app/assets/images/avo}/fonts/inter-v7-latin-700.eot +0 -0
- /data/{public/avo-assets → app/assets/images/avo}/fonts/inter-v7-latin-700.svg +0 -0
- /data/{public/avo-assets → app/assets/images/avo}/fonts/inter-v7-latin-700.ttf +0 -0
- /data/{public/avo-assets → app/assets/images/avo}/fonts/inter-v7-latin-700.woff +0 -0
- /data/{public/avo-assets → app/assets/images/avo}/fonts/inter-v7-latin-700.woff2 +0 -0
- /data/{public/avo-assets → app/assets/images/avo}/fonts/inter-v7-latin-regular.eot +0 -0
- /data/{public/avo-assets → app/assets/images/avo}/fonts/inter-v7-latin-regular.svg +0 -0
- /data/{public/avo-assets → app/assets/images/avo}/fonts/inter-v7-latin-regular.ttf +0 -0
- /data/{public/avo-assets → app/assets/images/avo}/fonts/inter-v7-latin-regular.woff +0 -0
- /data/{public/avo-assets → app/assets/images/avo}/fonts/inter-v7-latin-regular.woff2 +0 -0
- /data/{public/avo-assets → app/assets/images/avo}/logo-on-white.png +0 -0
- /data/{public/avo-assets → app/assets/images/avo}/logo.png +0 -0
- /data/{public/avo-assets → app/assets/images/avo}/logomark.png +0 -0
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
avo (
|
|
4
|
+
avo (4.0.0.beta.2)
|
|
5
5
|
actionview (>= 6.1)
|
|
6
6
|
active_link_to
|
|
7
7
|
activerecord (>= 6.1)
|
|
@@ -10,8 +10,8 @@ PATH
|
|
|
10
10
|
avo-icons (>= 0.1.1)
|
|
11
11
|
docile
|
|
12
12
|
meta-tags
|
|
13
|
-
pagy (>=
|
|
14
|
-
prop_initializer (>= 0.
|
|
13
|
+
pagy (>= 43.0)
|
|
14
|
+
prop_initializer (>= 0.2.0)
|
|
15
15
|
turbo-rails (>= 2.0.0)
|
|
16
16
|
turbo_power (>= 0.6.0)
|
|
17
17
|
view_component (>= 3.7.0)
|
|
@@ -25,29 +25,29 @@ PATH
|
|
|
25
25
|
GEM
|
|
26
26
|
remote: https://rubygems.org/
|
|
27
27
|
specs:
|
|
28
|
-
actioncable (8.0.
|
|
29
|
-
actionpack (= 8.0.
|
|
30
|
-
activesupport (= 8.0.
|
|
28
|
+
actioncable (8.0.3)
|
|
29
|
+
actionpack (= 8.0.3)
|
|
30
|
+
activesupport (= 8.0.3)
|
|
31
31
|
nio4r (~> 2.0)
|
|
32
32
|
websocket-driver (>= 0.6.1)
|
|
33
33
|
zeitwerk (~> 2.6)
|
|
34
|
-
actionmailbox (8.0.
|
|
35
|
-
actionpack (= 8.0.
|
|
36
|
-
activejob (= 8.0.
|
|
37
|
-
activerecord (= 8.0.
|
|
38
|
-
activestorage (= 8.0.
|
|
39
|
-
activesupport (= 8.0.
|
|
34
|
+
actionmailbox (8.0.3)
|
|
35
|
+
actionpack (= 8.0.3)
|
|
36
|
+
activejob (= 8.0.3)
|
|
37
|
+
activerecord (= 8.0.3)
|
|
38
|
+
activestorage (= 8.0.3)
|
|
39
|
+
activesupport (= 8.0.3)
|
|
40
40
|
mail (>= 2.8.0)
|
|
41
|
-
actionmailer (8.0.
|
|
42
|
-
actionpack (= 8.0.
|
|
43
|
-
actionview (= 8.0.
|
|
44
|
-
activejob (= 8.0.
|
|
45
|
-
activesupport (= 8.0.
|
|
41
|
+
actionmailer (8.0.3)
|
|
42
|
+
actionpack (= 8.0.3)
|
|
43
|
+
actionview (= 8.0.3)
|
|
44
|
+
activejob (= 8.0.3)
|
|
45
|
+
activesupport (= 8.0.3)
|
|
46
46
|
mail (>= 2.8.0)
|
|
47
47
|
rails-dom-testing (~> 2.2)
|
|
48
|
-
actionpack (8.0.
|
|
49
|
-
actionview (= 8.0.
|
|
50
|
-
activesupport (= 8.0.
|
|
48
|
+
actionpack (8.0.3)
|
|
49
|
+
actionview (= 8.0.3)
|
|
50
|
+
activesupport (= 8.0.3)
|
|
51
51
|
nokogiri (>= 1.8.5)
|
|
52
52
|
rack (>= 2.2.4)
|
|
53
53
|
rack-session (>= 1.0.1)
|
|
@@ -55,15 +55,15 @@ GEM
|
|
|
55
55
|
rails-dom-testing (~> 2.2)
|
|
56
56
|
rails-html-sanitizer (~> 1.6)
|
|
57
57
|
useragent (~> 0.16)
|
|
58
|
-
actiontext (8.0.
|
|
59
|
-
actionpack (= 8.0.
|
|
60
|
-
activerecord (= 8.0.
|
|
61
|
-
activestorage (= 8.0.
|
|
62
|
-
activesupport (= 8.0.
|
|
58
|
+
actiontext (8.0.3)
|
|
59
|
+
actionpack (= 8.0.3)
|
|
60
|
+
activerecord (= 8.0.3)
|
|
61
|
+
activestorage (= 8.0.3)
|
|
62
|
+
activesupport (= 8.0.3)
|
|
63
63
|
globalid (>= 0.6.0)
|
|
64
64
|
nokogiri (>= 1.8.5)
|
|
65
|
-
actionview (8.0.
|
|
66
|
-
activesupport (= 8.0.
|
|
65
|
+
actionview (8.0.3)
|
|
66
|
+
activesupport (= 8.0.3)
|
|
67
67
|
builder (~> 3.1)
|
|
68
68
|
erubi (~> 1.11)
|
|
69
69
|
rails-dom-testing (~> 2.2)
|
|
@@ -73,22 +73,22 @@ GEM
|
|
|
73
73
|
addressable
|
|
74
74
|
active_median (0.6.0)
|
|
75
75
|
activesupport (>= 7.1)
|
|
76
|
-
activejob (8.0.
|
|
77
|
-
activesupport (= 8.0.
|
|
76
|
+
activejob (8.0.3)
|
|
77
|
+
activesupport (= 8.0.3)
|
|
78
78
|
globalid (>= 0.3.6)
|
|
79
|
-
activemodel (8.0.
|
|
80
|
-
activesupport (= 8.0.
|
|
81
|
-
activerecord (8.0.
|
|
82
|
-
activemodel (= 8.0.
|
|
83
|
-
activesupport (= 8.0.
|
|
79
|
+
activemodel (8.0.3)
|
|
80
|
+
activesupport (= 8.0.3)
|
|
81
|
+
activerecord (8.0.3)
|
|
82
|
+
activemodel (= 8.0.3)
|
|
83
|
+
activesupport (= 8.0.3)
|
|
84
84
|
timeout (>= 0.4.0)
|
|
85
|
-
activestorage (8.0.
|
|
86
|
-
actionpack (= 8.0.
|
|
87
|
-
activejob (= 8.0.
|
|
88
|
-
activerecord (= 8.0.
|
|
89
|
-
activesupport (= 8.0.
|
|
85
|
+
activestorage (8.0.3)
|
|
86
|
+
actionpack (= 8.0.3)
|
|
87
|
+
activejob (= 8.0.3)
|
|
88
|
+
activerecord (= 8.0.3)
|
|
89
|
+
activesupport (= 8.0.3)
|
|
90
90
|
marcel (~> 1.0)
|
|
91
|
-
activesupport (8.0.
|
|
91
|
+
activesupport (8.0.3)
|
|
92
92
|
base64
|
|
93
93
|
benchmark (>= 0.3)
|
|
94
94
|
bigdecimal
|
|
@@ -104,7 +104,7 @@ GEM
|
|
|
104
104
|
acts-as-taggable-on (12.0.0)
|
|
105
105
|
activerecord (>= 7.1, < 8.1)
|
|
106
106
|
zeitwerk (>= 2.4, < 3.0)
|
|
107
|
-
acts_as_list (1.2.
|
|
107
|
+
acts_as_list (1.2.4)
|
|
108
108
|
activerecord (>= 6.1)
|
|
109
109
|
activesupport (>= 6.1)
|
|
110
110
|
actual_db_schema (0.8.6)
|
|
@@ -114,9 +114,9 @@ GEM
|
|
|
114
114
|
csv
|
|
115
115
|
parser
|
|
116
116
|
prism
|
|
117
|
-
addressable (2.8.
|
|
118
|
-
public_suffix (>= 2.0.2, <
|
|
119
|
-
amazing_print (
|
|
117
|
+
addressable (2.8.7)
|
|
118
|
+
public_suffix (>= 2.0.2, < 7.0)
|
|
119
|
+
amazing_print (1.8.1)
|
|
120
120
|
annotate (2.6.5)
|
|
121
121
|
activerecord (>= 2.3.0)
|
|
122
122
|
rake (>= 0.8.7)
|
|
@@ -124,15 +124,15 @@ GEM
|
|
|
124
124
|
bundler
|
|
125
125
|
rake
|
|
126
126
|
thor (>= 0.14.0)
|
|
127
|
-
ast (2.4.
|
|
127
|
+
ast (2.4.2)
|
|
128
128
|
avo-icons (0.1.1)
|
|
129
129
|
inline_svg
|
|
130
130
|
avo-money_field (0.0.5)
|
|
131
131
|
money-rails (~> 1.12)
|
|
132
132
|
avo-record_link_field (0.0.2)
|
|
133
133
|
aws-eventstream (1.4.0)
|
|
134
|
-
aws-partitions (1.
|
|
135
|
-
aws-sdk-core (3.
|
|
134
|
+
aws-partitions (1.1152.0)
|
|
135
|
+
aws-sdk-core (3.231.0)
|
|
136
136
|
aws-eventstream (~> 1, >= 1.3.0)
|
|
137
137
|
aws-partitions (~> 1, >= 1.992.0)
|
|
138
138
|
aws-sigv4 (~> 1.9)
|
|
@@ -140,15 +140,27 @@ GEM
|
|
|
140
140
|
bigdecimal
|
|
141
141
|
jmespath (~> 1, >= 1.6.1)
|
|
142
142
|
logger
|
|
143
|
-
aws-sdk-kms (1.
|
|
144
|
-
aws-sdk-core (~> 3, >= 3.
|
|
143
|
+
aws-sdk-kms (1.112.0)
|
|
144
|
+
aws-sdk-core (~> 3, >= 3.231.0)
|
|
145
145
|
aws-sigv4 (~> 1.5)
|
|
146
|
-
aws-sdk-s3 (1.
|
|
147
|
-
aws-sdk-core (~> 3, >= 3.
|
|
146
|
+
aws-sdk-s3 (1.198.0)
|
|
147
|
+
aws-sdk-core (~> 3, >= 3.231.0)
|
|
148
148
|
aws-sdk-kms (~> 1)
|
|
149
149
|
aws-sigv4 (~> 1.5)
|
|
150
150
|
aws-sigv4 (1.12.1)
|
|
151
151
|
aws-eventstream (~> 1, >= 1.0.2)
|
|
152
|
+
axe-core-api (4.11.0)
|
|
153
|
+
dumb_delegator
|
|
154
|
+
ostruct
|
|
155
|
+
virtus
|
|
156
|
+
axe-core-capybara (4.11.0)
|
|
157
|
+
axe-core-api (= 4.11.0)
|
|
158
|
+
dumb_delegator
|
|
159
|
+
axe-core-rspec (4.11.0)
|
|
160
|
+
axe-core-api (= 4.11.0)
|
|
161
|
+
dumb_delegator
|
|
162
|
+
ostruct
|
|
163
|
+
virtus
|
|
152
164
|
axiom-types (0.1.1)
|
|
153
165
|
descendants_tracker (~> 0.0.4)
|
|
154
166
|
ice_nine (~> 0.11.0)
|
|
@@ -156,18 +168,18 @@ GEM
|
|
|
156
168
|
backport (1.2.0)
|
|
157
169
|
base64 (0.3.0)
|
|
158
170
|
bcrypt (3.1.20)
|
|
159
|
-
benchmark (0.
|
|
171
|
+
benchmark (0.4.1)
|
|
160
172
|
benchmark-ips (2.14.0)
|
|
161
|
-
better_html (2.
|
|
162
|
-
actionview (>=
|
|
163
|
-
activesupport (>=
|
|
173
|
+
better_html (2.1.1)
|
|
174
|
+
actionview (>= 6.0)
|
|
175
|
+
activesupport (>= 6.0)
|
|
164
176
|
ast (~> 2.0)
|
|
165
177
|
erubi (~> 1.4)
|
|
166
178
|
parser (>= 2.4)
|
|
167
179
|
smart_properties
|
|
168
|
-
bigdecimal (3.
|
|
180
|
+
bigdecimal (3.2.2)
|
|
169
181
|
bindex (0.8.1)
|
|
170
|
-
bootsnap (1.
|
|
182
|
+
bootsnap (1.18.6)
|
|
171
183
|
msgpack (~> 1.2)
|
|
172
184
|
builder (3.3.0)
|
|
173
185
|
bump (0.10.0)
|
|
@@ -181,30 +193,54 @@ GEM
|
|
|
181
193
|
rack-test (>= 0.6.3)
|
|
182
194
|
regexp_parser (>= 1.5, < 3.0)
|
|
183
195
|
xpath (~> 3.2)
|
|
184
|
-
chartkick (5.2.
|
|
196
|
+
chartkick (5.2.0)
|
|
185
197
|
childprocess (5.1.0)
|
|
186
198
|
logger (~> 1.5)
|
|
199
|
+
claide (1.1.0)
|
|
200
|
+
claide-plugins (0.9.2)
|
|
201
|
+
cork
|
|
202
|
+
nap
|
|
203
|
+
open4 (~> 1.3)
|
|
187
204
|
coercible (1.0.0)
|
|
188
205
|
descendants_tracker (~> 0.0.1)
|
|
206
|
+
colored2 (3.1.2)
|
|
189
207
|
concurrent-ruby (1.3.5)
|
|
190
|
-
connection_pool (2.5.
|
|
191
|
-
|
|
208
|
+
connection_pool (2.5.3)
|
|
209
|
+
cork (0.3.0)
|
|
210
|
+
colored2 (~> 3.1)
|
|
211
|
+
countries (8.0.3)
|
|
192
212
|
unaccent (~> 0.3)
|
|
193
|
-
crack (1.0.
|
|
213
|
+
crack (1.0.0)
|
|
194
214
|
bigdecimal
|
|
195
215
|
rexml
|
|
196
216
|
crass (1.0.6)
|
|
197
|
-
|
|
217
|
+
css_parser (1.21.1)
|
|
218
|
+
addressable
|
|
219
|
+
cssbundling-rails (1.4.2)
|
|
198
220
|
railties (>= 6.0.0)
|
|
199
221
|
csv (3.3.5)
|
|
200
222
|
cuprite (0.17)
|
|
201
223
|
capybara (~> 3.0)
|
|
202
224
|
ferrum (~> 0.17.0)
|
|
225
|
+
danger (9.5.3)
|
|
226
|
+
base64 (~> 0.2)
|
|
227
|
+
claide (~> 1.0)
|
|
228
|
+
claide-plugins (>= 0.9.2)
|
|
229
|
+
colored2 (>= 3.1, < 5)
|
|
230
|
+
cork (~> 0.1)
|
|
231
|
+
faraday (>= 0.9.0, < 3.0)
|
|
232
|
+
faraday-http-cache (~> 2.0)
|
|
233
|
+
git (>= 1.13, < 3.0)
|
|
234
|
+
kramdown (>= 2.5.1, < 3.0)
|
|
235
|
+
kramdown-parser-gfm (~> 1.0)
|
|
236
|
+
octokit (>= 4.0)
|
|
237
|
+
pstore (~> 0.1)
|
|
238
|
+
terminal-table (>= 1, < 5)
|
|
203
239
|
database_cleaner-active_record (2.2.2)
|
|
204
240
|
activerecord (>= 5.a)
|
|
205
241
|
database_cleaner-core (~> 2.0)
|
|
206
242
|
database_cleaner-core (2.0.1)
|
|
207
|
-
date (3.
|
|
243
|
+
date (3.4.1)
|
|
208
244
|
dead_end (4.0.0)
|
|
209
245
|
debug (1.11.0)
|
|
210
246
|
irb (~> 1.10)
|
|
@@ -231,9 +267,9 @@ GEM
|
|
|
231
267
|
warden (~> 1.2.3)
|
|
232
268
|
diff-lcs (1.6.2)
|
|
233
269
|
docile (1.4.1)
|
|
234
|
-
dotenv (3.
|
|
235
|
-
dotenv-rails (3.
|
|
236
|
-
dotenv (= 3.
|
|
270
|
+
dotenv (3.1.8)
|
|
271
|
+
dotenv-rails (3.1.8)
|
|
272
|
+
dotenv (= 3.1.8)
|
|
237
273
|
railties (>= 6.1)
|
|
238
274
|
drb (2.2.3)
|
|
239
275
|
dry-configurable (1.3.0)
|
|
@@ -265,7 +301,8 @@ GEM
|
|
|
265
301
|
dry-inflector (~> 1.0)
|
|
266
302
|
dry-logic (~> 1.4)
|
|
267
303
|
zeitwerk (~> 2.6)
|
|
268
|
-
|
|
304
|
+
dumb_delegator (1.1.0)
|
|
305
|
+
erb (5.0.2)
|
|
269
306
|
erb-formatter (0.7.3)
|
|
270
307
|
syntax_tree (~> 6.0)
|
|
271
308
|
erb_lint (0.9.0)
|
|
@@ -277,28 +314,29 @@ GEM
|
|
|
277
314
|
smart_properties
|
|
278
315
|
erubi (1.13.1)
|
|
279
316
|
event_stream_parser (1.0.0)
|
|
280
|
-
factory_bot (6.5.
|
|
317
|
+
factory_bot (6.5.5)
|
|
281
318
|
activesupport (>= 6.1.0)
|
|
282
|
-
factory_bot_rails (6.5.
|
|
319
|
+
factory_bot_rails (6.5.0)
|
|
283
320
|
factory_bot (~> 6.5)
|
|
284
321
|
railties (>= 6.1.0)
|
|
285
|
-
faker (3.5.
|
|
322
|
+
faker (3.5.2)
|
|
286
323
|
i18n (>= 1.8.11, < 2)
|
|
287
|
-
faraday (2.
|
|
324
|
+
faraday (2.13.4)
|
|
288
325
|
faraday-net_http (>= 2.0, < 3.5)
|
|
289
326
|
json
|
|
290
327
|
logger
|
|
328
|
+
faraday-http-cache (2.5.1)
|
|
329
|
+
faraday (>= 0.8)
|
|
291
330
|
faraday-multipart (1.1.1)
|
|
292
331
|
multipart-post (~> 2.0)
|
|
293
|
-
faraday-net_http (3.4.
|
|
294
|
-
net-http (
|
|
332
|
+
faraday-net_http (3.4.1)
|
|
333
|
+
net-http (>= 0.5.0)
|
|
295
334
|
ferrum (0.17.1)
|
|
296
335
|
addressable (~> 2.5)
|
|
297
336
|
base64 (~> 0.2)
|
|
298
337
|
concurrent-ruby (~> 1.1)
|
|
299
338
|
webrick (~> 1.7)
|
|
300
339
|
websocket-driver (~> 0.7)
|
|
301
|
-
ffi (1.17.2-aarch64-linux-gnu)
|
|
302
340
|
ffi (1.17.2-arm64-darwin)
|
|
303
341
|
ffi (1.17.2-x86_64-linux-gnu)
|
|
304
342
|
flay (2.13.3)
|
|
@@ -318,11 +356,16 @@ GEM
|
|
|
318
356
|
gem-release (2.2.4)
|
|
319
357
|
get_process_mem (0.2.7)
|
|
320
358
|
ffi (~> 1.0)
|
|
321
|
-
|
|
359
|
+
git (2.3.3)
|
|
360
|
+
activesupport (>= 5.0)
|
|
361
|
+
addressable (~> 2.8)
|
|
362
|
+
process_executer (~> 1.1)
|
|
363
|
+
rchardet (~> 1.8)
|
|
364
|
+
globalid (1.2.1)
|
|
322
365
|
activesupport (>= 6.1)
|
|
323
366
|
groupdate (6.7.0)
|
|
324
367
|
activesupport (>= 7.1)
|
|
325
|
-
hashdiff (1.2.
|
|
368
|
+
hashdiff (1.2.0)
|
|
326
369
|
hashid-rails (1.4.1)
|
|
327
370
|
activerecord (>= 4.0)
|
|
328
371
|
hashids (~> 1.0)
|
|
@@ -338,9 +381,10 @@ GEM
|
|
|
338
381
|
listen (>= 3.0.0)
|
|
339
382
|
railties (>= 6.0.0)
|
|
340
383
|
htmlbeautifier (1.4.3)
|
|
384
|
+
htmlentities (4.3.4)
|
|
341
385
|
i18n (1.14.7)
|
|
342
386
|
concurrent-ruby (~> 1.0)
|
|
343
|
-
i18n-tasks (1.0.
|
|
387
|
+
i18n-tasks (1.0.14)
|
|
344
388
|
activesupport (>= 4.0.2)
|
|
345
389
|
ast (>= 2.1.0)
|
|
346
390
|
erubi
|
|
@@ -349,7 +393,6 @@ GEM
|
|
|
349
393
|
parser (>= 3.2.2.1)
|
|
350
394
|
rails-i18n
|
|
351
395
|
rainbow (>= 2.2.2, < 4.0)
|
|
352
|
-
ruby-progressbar (~> 1.8, >= 1.8.1)
|
|
353
396
|
terminal-table (>= 1.5.1)
|
|
354
397
|
ice_nine (0.11.2)
|
|
355
398
|
image_processing (1.14.0)
|
|
@@ -359,7 +402,7 @@ GEM
|
|
|
359
402
|
activesupport (>= 3.0)
|
|
360
403
|
nokogiri (>= 1.6)
|
|
361
404
|
io-console (0.8.1)
|
|
362
|
-
irb (1.15.
|
|
405
|
+
irb (1.15.2)
|
|
363
406
|
pp (>= 0.6.0)
|
|
364
407
|
rdoc (>= 4.0.0)
|
|
365
408
|
reline (>= 0.4.2)
|
|
@@ -369,7 +412,7 @@ GEM
|
|
|
369
412
|
jmespath (1.6.2)
|
|
370
413
|
jsbundling-rails (1.3.1)
|
|
371
414
|
railties (>= 6.0.0)
|
|
372
|
-
json (2.
|
|
415
|
+
json (2.19.0)
|
|
373
416
|
kramdown (2.5.1)
|
|
374
417
|
rexml (>= 3.3.9)
|
|
375
418
|
kramdown-parser-gfm (1.1.0)
|
|
@@ -387,24 +430,35 @@ GEM
|
|
|
387
430
|
loofah (2.24.1)
|
|
388
431
|
crass (~> 1.0.2)
|
|
389
432
|
nokogiri (>= 1.12.0)
|
|
390
|
-
|
|
391
|
-
|
|
433
|
+
lookbook (2.3.11)
|
|
434
|
+
activemodel
|
|
435
|
+
css_parser
|
|
436
|
+
htmlbeautifier (~> 1.3)
|
|
437
|
+
htmlentities (~> 4.3.4)
|
|
438
|
+
marcel (~> 1.0)
|
|
439
|
+
railties (>= 5.0)
|
|
440
|
+
redcarpet (~> 3.5)
|
|
441
|
+
rouge (>= 3.26, < 5.0)
|
|
442
|
+
view_component (>= 2.0)
|
|
443
|
+
yard (~> 0.9)
|
|
444
|
+
zeitwerk (~> 2.5)
|
|
445
|
+
mail (2.8.1)
|
|
392
446
|
mini_mime (>= 0.1.1)
|
|
393
447
|
net-imap
|
|
394
448
|
net-pop
|
|
395
449
|
net-smtp
|
|
396
450
|
mapkick-rb (0.1.5)
|
|
397
451
|
mapkick-static (0.2.0)
|
|
398
|
-
marcel (1.
|
|
452
|
+
marcel (1.0.4)
|
|
399
453
|
matrix (0.4.3)
|
|
400
454
|
memory_profiler (1.1.0)
|
|
401
|
-
meta-tags (2.22.
|
|
402
|
-
actionpack (>= 6.0.0, < 8.
|
|
455
|
+
meta-tags (2.22.1)
|
|
456
|
+
actionpack (>= 6.0.0, < 8.1)
|
|
403
457
|
mini_histogram (0.3.1)
|
|
404
458
|
mini_magick (5.3.1)
|
|
405
459
|
logger
|
|
406
460
|
mini_mime (1.1.5)
|
|
407
|
-
minitest (5.
|
|
461
|
+
minitest (5.25.4)
|
|
408
462
|
monetize (1.13.0)
|
|
409
463
|
money (~> 6.12)
|
|
410
464
|
money (6.19.0)
|
|
@@ -416,9 +470,10 @@ GEM
|
|
|
416
470
|
railties (>= 3.0)
|
|
417
471
|
msgpack (1.8.0)
|
|
418
472
|
multipart-post (2.4.1)
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
473
|
+
nap (1.1.0)
|
|
474
|
+
net-http (0.6.0)
|
|
475
|
+
uri
|
|
476
|
+
net-imap (0.5.9)
|
|
422
477
|
date
|
|
423
478
|
net-protocol
|
|
424
479
|
net-pop (0.1.2)
|
|
@@ -427,43 +482,55 @@ GEM
|
|
|
427
482
|
timeout
|
|
428
483
|
net-smtp (0.5.1)
|
|
429
484
|
net-protocol
|
|
430
|
-
nio4r (2.7.
|
|
431
|
-
nokogiri (1.
|
|
432
|
-
racc (~> 1.4)
|
|
433
|
-
nokogiri (1.19.1-arm64-darwin)
|
|
485
|
+
nio4r (2.7.4)
|
|
486
|
+
nokogiri (1.18.9-arm64-darwin)
|
|
434
487
|
racc (~> 1.4)
|
|
435
|
-
nokogiri (1.
|
|
488
|
+
nokogiri (1.18.9-x86_64-linux-gnu)
|
|
436
489
|
racc (~> 1.4)
|
|
437
490
|
observer (0.1.2)
|
|
491
|
+
octokit (10.0.0)
|
|
492
|
+
faraday (>= 1, < 3)
|
|
493
|
+
sawyer (~> 0.9)
|
|
494
|
+
open4 (1.3.4)
|
|
495
|
+
openssl (3.3.2)
|
|
438
496
|
orm_adapter (0.5.0)
|
|
439
497
|
ostruct (0.6.3)
|
|
440
|
-
pagy (
|
|
498
|
+
pagy (43.3.1)
|
|
499
|
+
json
|
|
500
|
+
uri
|
|
501
|
+
yaml
|
|
441
502
|
parallel (1.27.0)
|
|
442
|
-
parser (3.3.
|
|
503
|
+
parser (3.3.9.0)
|
|
443
504
|
ast (~> 2.4.1)
|
|
444
505
|
racc
|
|
445
506
|
path_expander (1.1.3)
|
|
446
|
-
pg (1.6.
|
|
447
|
-
pg (1.6.
|
|
448
|
-
|
|
449
|
-
pp (0.6.3)
|
|
507
|
+
pg (1.6.1-arm64-darwin)
|
|
508
|
+
pg (1.6.1-x86_64-linux)
|
|
509
|
+
pp (0.6.2)
|
|
450
510
|
prettyprint
|
|
451
511
|
prefixed_ids (1.8.1)
|
|
452
512
|
hashids (>= 1.0.0, < 2.0.0)
|
|
453
513
|
rails (>= 6.0.0)
|
|
454
514
|
prettier_print (1.2.1)
|
|
455
515
|
prettyprint (0.2.0)
|
|
456
|
-
prism (1.
|
|
457
|
-
|
|
516
|
+
prism (1.4.0)
|
|
517
|
+
process_executer (1.3.0)
|
|
518
|
+
prop_initializer (0.2.0)
|
|
458
519
|
zeitwerk (>= 2.6.18)
|
|
520
|
+
propshaft (1.1.0)
|
|
521
|
+
actionpack (>= 7.0.0)
|
|
522
|
+
activesupport (>= 7.0.0)
|
|
523
|
+
rack
|
|
524
|
+
railties (>= 7.0.0)
|
|
525
|
+
pstore (0.2.0)
|
|
459
526
|
psych (5.2.6)
|
|
460
527
|
date
|
|
461
528
|
stringio
|
|
462
|
-
public_suffix (
|
|
529
|
+
public_suffix (6.0.2)
|
|
463
530
|
puma (6.6.1)
|
|
464
531
|
nio4r (~> 2.0)
|
|
465
532
|
racc (1.8.1)
|
|
466
|
-
rack (3.2.
|
|
533
|
+
rack (3.2.0)
|
|
467
534
|
rack-session (2.1.1)
|
|
468
535
|
base64 (>= 0.1.0)
|
|
469
536
|
rack (>= 3.0.0)
|
|
@@ -471,20 +538,20 @@ GEM
|
|
|
471
538
|
rack (>= 1.3)
|
|
472
539
|
rackup (2.2.1)
|
|
473
540
|
rack (>= 3)
|
|
474
|
-
rails (8.0.
|
|
475
|
-
actioncable (= 8.0.
|
|
476
|
-
actionmailbox (= 8.0.
|
|
477
|
-
actionmailer (= 8.0.
|
|
478
|
-
actionpack (= 8.0.
|
|
479
|
-
actiontext (= 8.0.
|
|
480
|
-
actionview (= 8.0.
|
|
481
|
-
activejob (= 8.0.
|
|
482
|
-
activemodel (= 8.0.
|
|
483
|
-
activerecord (= 8.0.
|
|
484
|
-
activestorage (= 8.0.
|
|
485
|
-
activesupport (= 8.0.
|
|
541
|
+
rails (8.0.3)
|
|
542
|
+
actioncable (= 8.0.3)
|
|
543
|
+
actionmailbox (= 8.0.3)
|
|
544
|
+
actionmailer (= 8.0.3)
|
|
545
|
+
actionpack (= 8.0.3)
|
|
546
|
+
actiontext (= 8.0.3)
|
|
547
|
+
actionview (= 8.0.3)
|
|
548
|
+
activejob (= 8.0.3)
|
|
549
|
+
activemodel (= 8.0.3)
|
|
550
|
+
activerecord (= 8.0.3)
|
|
551
|
+
activestorage (= 8.0.3)
|
|
552
|
+
activesupport (= 8.0.3)
|
|
486
553
|
bundler (>= 1.15.0)
|
|
487
|
-
railties (= 8.0.
|
|
554
|
+
railties (= 8.0.3)
|
|
488
555
|
rails-controller-testing (1.0.5)
|
|
489
556
|
actionpack (>= 5.0.1.rc1)
|
|
490
557
|
actionview (>= 5.0.1.rc1)
|
|
@@ -496,12 +563,12 @@ GEM
|
|
|
496
563
|
rails-html-sanitizer (1.6.2)
|
|
497
564
|
loofah (~> 2.21)
|
|
498
565
|
nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
|
|
499
|
-
rails-i18n (8.
|
|
566
|
+
rails-i18n (8.0.2)
|
|
500
567
|
i18n (>= 0.7, < 2)
|
|
501
568
|
railties (>= 8.0.0, < 9)
|
|
502
|
-
railties (8.0.
|
|
503
|
-
actionpack (= 8.0.
|
|
504
|
-
activesupport (= 8.0.
|
|
569
|
+
railties (8.0.3)
|
|
570
|
+
actionpack (= 8.0.3)
|
|
571
|
+
activesupport (= 8.0.3)
|
|
505
572
|
irb (~> 1.13)
|
|
506
573
|
rackup (>= 1.0.0)
|
|
507
574
|
rake (>= 12.2)
|
|
@@ -509,23 +576,24 @@ GEM
|
|
|
509
576
|
tsort (>= 0.2)
|
|
510
577
|
zeitwerk (~> 2.6)
|
|
511
578
|
rainbow (3.1.1)
|
|
512
|
-
rake (13.3.
|
|
513
|
-
ransack (4.
|
|
514
|
-
activerecord (>=
|
|
515
|
-
activesupport (>=
|
|
579
|
+
rake (13.3.0)
|
|
580
|
+
ransack (4.3.0)
|
|
581
|
+
activerecord (>= 6.1.5)
|
|
582
|
+
activesupport (>= 6.1.5)
|
|
516
583
|
i18n
|
|
517
584
|
rb-fsevent (0.11.2)
|
|
518
585
|
rb-inotify (0.11.1)
|
|
519
586
|
ffi (~> 1.0)
|
|
520
|
-
rbs (3.9.
|
|
587
|
+
rbs (3.9.4)
|
|
521
588
|
logger
|
|
522
|
-
|
|
589
|
+
rchardet (1.10.0)
|
|
590
|
+
rdoc (6.14.2)
|
|
523
591
|
erb
|
|
524
592
|
psych (>= 4.0.0)
|
|
525
|
-
|
|
593
|
+
redcarpet (3.6.1)
|
|
526
594
|
redis (5.4.1)
|
|
527
595
|
redis-client (>= 0.22.0)
|
|
528
|
-
redis-client (0.
|
|
596
|
+
redis-client (0.25.2)
|
|
529
597
|
connection_pool
|
|
530
598
|
reek (6.5.0)
|
|
531
599
|
dry-schema (~> 1.13)
|
|
@@ -533,22 +601,23 @@ GEM
|
|
|
533
601
|
parser (~> 3.3.0)
|
|
534
602
|
rainbow (>= 2.0, < 4.0)
|
|
535
603
|
rexml (~> 3.1)
|
|
536
|
-
regexp_parser (2.11.
|
|
537
|
-
reline (0.6.
|
|
604
|
+
regexp_parser (2.11.2)
|
|
605
|
+
reline (0.6.2)
|
|
538
606
|
io-console (~> 0.5)
|
|
539
|
-
responders (3.
|
|
540
|
-
actionpack (>=
|
|
541
|
-
railties (>=
|
|
607
|
+
responders (3.1.1)
|
|
608
|
+
actionpack (>= 5.2)
|
|
609
|
+
railties (>= 5.2)
|
|
542
610
|
reverse_markdown (3.0.0)
|
|
543
611
|
nokogiri
|
|
544
|
-
rexml (3.4.
|
|
612
|
+
rexml (3.4.2)
|
|
545
613
|
ripper-tags (1.0.2)
|
|
546
|
-
|
|
614
|
+
rouge (4.5.2)
|
|
615
|
+
rspec-core (3.13.5)
|
|
547
616
|
rspec-support (~> 3.13.0)
|
|
548
617
|
rspec-expectations (3.13.5)
|
|
549
618
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
550
619
|
rspec-support (~> 3.13.0)
|
|
551
|
-
rspec-mocks (3.13.
|
|
620
|
+
rspec-mocks (3.13.5)
|
|
552
621
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
553
622
|
rspec-support (~> 3.13.0)
|
|
554
623
|
rspec-rails (6.1.5)
|
|
@@ -561,8 +630,8 @@ GEM
|
|
|
561
630
|
rspec-support (~> 3.13)
|
|
562
631
|
rspec-retry (0.6.2)
|
|
563
632
|
rspec-core (> 3.3)
|
|
564
|
-
rspec-support (3.13.
|
|
565
|
-
rubocop (1.
|
|
633
|
+
rspec-support (3.13.5)
|
|
634
|
+
rubocop (1.75.8)
|
|
566
635
|
json (~> 2.3)
|
|
567
636
|
language_server-protocol (~> 3.17.0.2)
|
|
568
637
|
lint_roller (~> 1.1.0)
|
|
@@ -570,19 +639,25 @@ GEM
|
|
|
570
639
|
parser (>= 3.3.0.2)
|
|
571
640
|
rainbow (>= 2.2.2, < 4.0)
|
|
572
641
|
regexp_parser (>= 2.9.3, < 3.0)
|
|
573
|
-
rubocop-ast (>= 1.
|
|
642
|
+
rubocop-ast (>= 1.44.0, < 2.0)
|
|
574
643
|
ruby-progressbar (~> 1.7)
|
|
575
644
|
unicode-display_width (>= 2.4.0, < 4.0)
|
|
576
|
-
rubocop-ast (1.
|
|
645
|
+
rubocop-ast (1.46.0)
|
|
577
646
|
parser (>= 3.3.7.2)
|
|
578
647
|
prism (~> 1.4)
|
|
579
648
|
rubocop-performance (1.25.0)
|
|
580
649
|
lint_roller (~> 1.1)
|
|
581
650
|
rubocop (>= 1.75.0, < 2.0)
|
|
582
651
|
rubocop-ast (>= 1.38.0, < 2.0)
|
|
583
|
-
rubocop-shopify (2.
|
|
652
|
+
rubocop-shopify (2.17.1)
|
|
584
653
|
rubocop (~> 1.62)
|
|
585
|
-
ruby-
|
|
654
|
+
ruby-lsp (0.26.4)
|
|
655
|
+
language_server-protocol (~> 3.17.0)
|
|
656
|
+
prism (>= 1.2, < 2.0)
|
|
657
|
+
rbs (>= 3, < 5)
|
|
658
|
+
ruby-lsp-rspec (0.1.28)
|
|
659
|
+
ruby-lsp (~> 0.26.0)
|
|
660
|
+
ruby-openai (8.2.0)
|
|
586
661
|
event_stream_parser (>= 0.3.0, < 2.0.0)
|
|
587
662
|
faraday (>= 1)
|
|
588
663
|
faraday-multipart (>= 1)
|
|
@@ -594,7 +669,7 @@ GEM
|
|
|
594
669
|
ruby_parser (3.21.1)
|
|
595
670
|
racc (~> 1.5)
|
|
596
671
|
sexp_processor (~> 4.16)
|
|
597
|
-
rubycritic (4.
|
|
672
|
+
rubycritic (4.10.0)
|
|
598
673
|
flay (~> 2.13)
|
|
599
674
|
flog (~> 4.7)
|
|
600
675
|
launchy (>= 2.5.2)
|
|
@@ -606,8 +681,18 @@ GEM
|
|
|
606
681
|
simplecov (>= 0.22.0)
|
|
607
682
|
tty-which (~> 0.5.0)
|
|
608
683
|
virtus (~> 2.0)
|
|
684
|
+
rubyzip (3.2.2)
|
|
685
|
+
sawyer (0.9.3)
|
|
686
|
+
addressable (>= 2.3.5)
|
|
687
|
+
faraday (>= 0.17.3, < 3)
|
|
609
688
|
securerandom (0.4.1)
|
|
610
|
-
|
|
689
|
+
selenium-webdriver (4.39.0)
|
|
690
|
+
base64 (~> 0.2)
|
|
691
|
+
logger (~> 1.4)
|
|
692
|
+
rexml (~> 3.2, >= 3.2.5)
|
|
693
|
+
rubyzip (>= 1.2.2, < 4.0)
|
|
694
|
+
websocket (~> 1.0)
|
|
695
|
+
sexp_processor (4.17.3)
|
|
611
696
|
simplecov (0.22.0)
|
|
612
697
|
docile (~> 1.1)
|
|
613
698
|
simplecov-html (~> 0.11)
|
|
@@ -619,7 +704,7 @@ GEM
|
|
|
619
704
|
simplecov-lcov (0.9.0)
|
|
620
705
|
simplecov_json_formatter (0.1.4)
|
|
621
706
|
smart_properties (1.17.0)
|
|
622
|
-
solargraph (0.
|
|
707
|
+
solargraph (0.56.0)
|
|
623
708
|
backport (~> 1.2)
|
|
624
709
|
benchmark (~> 0.4)
|
|
625
710
|
bundler (~> 2.0)
|
|
@@ -632,32 +717,23 @@ GEM
|
|
|
632
717
|
ostruct (~> 0.6)
|
|
633
718
|
parser (~> 3.0)
|
|
634
719
|
prism (~> 1.4)
|
|
635
|
-
rbs (
|
|
720
|
+
rbs (~> 3.3)
|
|
636
721
|
reverse_markdown (~> 3.0)
|
|
637
|
-
rubocop (~> 1.
|
|
722
|
+
rubocop (~> 1.38)
|
|
638
723
|
thor (~> 1.0)
|
|
639
724
|
tilt (~> 2.0)
|
|
640
725
|
yard (~> 0.9, >= 0.9.24)
|
|
641
|
-
yard-activesupport-concern (~> 0.0)
|
|
642
726
|
yard-solargraph (~> 0.1)
|
|
643
|
-
solargraph-rails (1.2.
|
|
727
|
+
solargraph-rails (1.2.0)
|
|
644
728
|
activesupport
|
|
645
|
-
solargraph (
|
|
729
|
+
solargraph (= 0.56.0)
|
|
646
730
|
spring (4.4.0)
|
|
647
731
|
spring-commands-rspec (1.0.4)
|
|
648
732
|
spring (>= 0.9.1)
|
|
649
|
-
|
|
650
|
-
concurrent-ruby (~> 1.0)
|
|
651
|
-
logger
|
|
652
|
-
rack (>= 2.2.4, < 4)
|
|
653
|
-
sprockets-rails (3.5.2)
|
|
654
|
-
actionpack (>= 6.1)
|
|
655
|
-
activesupport (>= 6.1)
|
|
656
|
-
sprockets (>= 3.0.0)
|
|
657
|
-
standard (1.52.0)
|
|
733
|
+
standard (1.50.0)
|
|
658
734
|
language_server-protocol (~> 3.17.0.2)
|
|
659
735
|
lint_roller (~> 1.0)
|
|
660
|
-
rubocop (~> 1.
|
|
736
|
+
rubocop (~> 1.75.5)
|
|
661
737
|
standard-custom (~> 1.0.0)
|
|
662
738
|
standard-performance (~> 1.8)
|
|
663
739
|
standard-custom (1.0.2)
|
|
@@ -666,7 +742,7 @@ GEM
|
|
|
666
742
|
standard-performance (1.8.0)
|
|
667
743
|
lint_roller (~> 1.1)
|
|
668
744
|
rubocop-performance (~> 1.25.0)
|
|
669
|
-
stringio (3.1.
|
|
745
|
+
stringio (3.1.7)
|
|
670
746
|
syntax_tree (6.3.0)
|
|
671
747
|
prettier_print (>= 1.2.0)
|
|
672
748
|
terminal-table (4.0.0)
|
|
@@ -675,10 +751,10 @@ GEM
|
|
|
675
751
|
thor (1.4.0)
|
|
676
752
|
thread_safe (0.3.6)
|
|
677
753
|
tilt (2.6.1)
|
|
678
|
-
timeout (0.4.
|
|
754
|
+
timeout (0.4.3)
|
|
679
755
|
tsort (0.2.0)
|
|
680
756
|
tty-which (0.5.0)
|
|
681
|
-
turbo-rails (2.0.
|
|
757
|
+
turbo-rails (2.0.16)
|
|
682
758
|
actionpack (>= 7.1.0)
|
|
683
759
|
railties (>= 7.1.0)
|
|
684
760
|
turbo_power (0.7.0)
|
|
@@ -686,9 +762,9 @@ GEM
|
|
|
686
762
|
tzinfo (2.0.6)
|
|
687
763
|
concurrent-ruby (~> 1.0)
|
|
688
764
|
unaccent (0.4.0)
|
|
689
|
-
unicode-display_width (3.
|
|
690
|
-
unicode-emoji (~> 4.
|
|
691
|
-
unicode-emoji (4.
|
|
765
|
+
unicode-display_width (3.1.5)
|
|
766
|
+
unicode-emoji (~> 4.0, >= 4.0.4)
|
|
767
|
+
unicode-emoji (4.0.4)
|
|
692
768
|
uri (1.1.1)
|
|
693
769
|
useragent (0.16.11)
|
|
694
770
|
view_component (4.0.0)
|
|
@@ -705,31 +781,31 @@ GEM
|
|
|
705
781
|
activemodel (>= 6.0.0)
|
|
706
782
|
bindex (>= 0.4.0)
|
|
707
783
|
railties (>= 6.0.0)
|
|
708
|
-
webmock (3.
|
|
784
|
+
webmock (3.25.0)
|
|
709
785
|
addressable (>= 2.8.0)
|
|
710
786
|
crack (>= 0.3.2)
|
|
711
787
|
hashdiff (>= 0.4.0, < 2.0.0)
|
|
712
|
-
webrick (1.9.
|
|
788
|
+
webrick (1.9.1)
|
|
789
|
+
websocket (1.2.11)
|
|
713
790
|
websocket-driver (0.8.0)
|
|
714
791
|
base64
|
|
715
792
|
websocket-extensions (>= 0.1.0)
|
|
716
793
|
websocket-extensions (0.1.5)
|
|
717
794
|
xpath (3.2.0)
|
|
718
795
|
nokogiri (~> 1.8)
|
|
796
|
+
yaml (0.4.0)
|
|
719
797
|
yard (0.9.37)
|
|
720
|
-
yard-activesupport-concern (0.0.1)
|
|
721
|
-
yard (>= 0.8)
|
|
722
798
|
yard-solargraph (0.1.0)
|
|
723
799
|
yard (~> 0.9)
|
|
724
800
|
zeitwerk (2.7.3)
|
|
725
801
|
|
|
726
802
|
PLATFORMS
|
|
727
|
-
aarch64-linux
|
|
728
803
|
arm64-darwin-23
|
|
729
804
|
arm64-darwin-24
|
|
730
805
|
x86_64-linux
|
|
731
806
|
|
|
732
807
|
DEPENDENCIES
|
|
808
|
+
actioncable
|
|
733
809
|
active_link_to
|
|
734
810
|
active_median
|
|
735
811
|
activestorage (>= 8.0.0)
|
|
@@ -744,6 +820,8 @@ DEPENDENCIES
|
|
|
744
820
|
avo-money_field
|
|
745
821
|
avo-record_link_field
|
|
746
822
|
aws-sdk-s3
|
|
823
|
+
axe-core-capybara
|
|
824
|
+
axe-core-rspec
|
|
747
825
|
bootsnap (>= 1.4.2)
|
|
748
826
|
bump
|
|
749
827
|
bundler-integrity (~> 1.0)
|
|
@@ -753,6 +831,7 @@ DEPENDENCIES
|
|
|
753
831
|
cssbundling-rails
|
|
754
832
|
csv
|
|
755
833
|
cuprite
|
|
834
|
+
danger
|
|
756
835
|
database_cleaner-active_record
|
|
757
836
|
debug
|
|
758
837
|
derailed_benchmarks (~> 2.1, >= 2.1.2)
|
|
@@ -776,14 +855,17 @@ DEPENDENCIES
|
|
|
776
855
|
jsbundling-rails
|
|
777
856
|
launchy
|
|
778
857
|
listen (>= 3.5.1)
|
|
858
|
+
lookbook (>= 2.3.8)
|
|
779
859
|
mapkick-rb (~> 0.1.4)
|
|
780
860
|
mapkick-static
|
|
781
861
|
meta-tags
|
|
782
862
|
money-rails (~> 1.12)
|
|
783
863
|
net-smtp
|
|
864
|
+
openssl
|
|
784
865
|
pg (>= 0.18, < 2.0)
|
|
785
866
|
pluggy!
|
|
786
867
|
prefixed_ids
|
|
868
|
+
propshaft
|
|
787
869
|
puma (~> 6.4)
|
|
788
870
|
rails (>= 8.0.0)
|
|
789
871
|
rails-controller-testing
|
|
@@ -794,9 +876,11 @@ DEPENDENCIES
|
|
|
794
876
|
rspec-retry (~> 0.6.2)
|
|
795
877
|
rubocop
|
|
796
878
|
rubocop-shopify
|
|
879
|
+
ruby-lsp-rspec
|
|
797
880
|
ruby-openai
|
|
798
881
|
ruby-statistics (< 4)
|
|
799
882
|
rubycritic
|
|
883
|
+
selenium-webdriver
|
|
800
884
|
simplecov
|
|
801
885
|
simplecov-cobertura
|
|
802
886
|
simplecov-lcov
|
|
@@ -804,7 +888,6 @@ DEPENDENCIES
|
|
|
804
888
|
solargraph-rails
|
|
805
889
|
spring
|
|
806
890
|
spring-commands-rspec
|
|
807
|
-
sprockets-rails
|
|
808
891
|
standard
|
|
809
892
|
test-prof
|
|
810
893
|
tzinfo-data
|
|
@@ -814,4 +897,4 @@ DEPENDENCIES
|
|
|
814
897
|
zeitwerk
|
|
815
898
|
|
|
816
899
|
BUNDLED WITH
|
|
817
|
-
2.
|
|
900
|
+
2.7.2
|