activeadmin 3.4.0 → 4.0.0.beta18
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/CHANGELOG.md +4 -102
- data/CONTRIBUTING.md +32 -117
- data/README.md +17 -30
- data/UPGRADING.md +241 -0
- data/app/assets/config/active_admin_manifest.js +2 -0
- data/{lib → app/controllers}/active_admin/base_controller/authorization.rb +1 -1
- data/app/controllers/active_admin/base_controller/menu.rb +39 -0
- data/{lib → app/controllers}/active_admin/base_controller.rb +46 -18
- data/{lib → app/controllers}/active_admin/page_controller.rb +0 -4
- data/{lib → app/controllers}/active_admin/resource_controller/action_builder.rb +1 -1
- data/{lib → app/controllers}/active_admin/resource_controller/data_access.rb +11 -6
- data/{lib → app/controllers}/active_admin/resource_controller/scoping.rb +1 -1
- data/{lib → app/controllers}/active_admin/resource_controller/streaming.rb +4 -4
- data/app/controllers/active_admin/resource_controller.rb +102 -0
- data/app/helpers/active_admin/auto_link_helper.rb +66 -0
- data/app/helpers/active_admin/breadcrumb_helper.rb +41 -0
- data/app/helpers/active_admin/display_helper.rb +117 -0
- data/app/helpers/active_admin/form_helper.rb +95 -0
- data/app/helpers/active_admin/index_helper.rb +40 -0
- data/app/helpers/active_admin/layout_helper.rb +63 -0
- data/app/javascript/active_admin/features/batch_actions.js +95 -0
- data/app/javascript/active_admin/features/dark_mode_toggle.js +37 -0
- data/app/javascript/active_admin/features/filters.js +34 -0
- data/app/javascript/active_admin/features/has_many.js +28 -0
- data/app/javascript/active_admin/features/main_menu.js +12 -0
- data/app/javascript/active_admin/features/per_page.js +9 -0
- data/app/javascript/active_admin/utils/dom.js +17 -0
- data/app/javascript/active_admin.js +10 -0
- data/app/views/active_admin/_flash_messages.html.erb +22 -0
- data/app/views/active_admin/_html_head.html.erb +13 -0
- data/app/views/active_admin/_main_navigation.html.erb +28 -0
- data/app/views/active_admin/_page_header.html.erb +27 -0
- data/app/views/active_admin/_sidebar.html.erb +5 -0
- data/app/views/active_admin/_site_footer.html.erb +7 -0
- data/app/views/active_admin/_site_header.html.erb +30 -0
- data/app/views/active_admin/devise/confirmations/new.html.erb +5 -3
- data/app/views/active_admin/devise/passwords/edit.html.erb +5 -3
- data/app/views/active_admin/devise/passwords/new.html.erb +5 -4
- data/app/views/active_admin/devise/registrations/new.html.erb +6 -4
- data/app/views/active_admin/devise/sessions/new.html.erb +6 -4
- data/app/views/active_admin/devise/shared/_links.erb +3 -1
- data/app/views/active_admin/devise/unlocks/new.html.erb +6 -4
- data/app/views/{kaminari/active_admin_countless → active_admin/kaminari}/_gap.html.erb +3 -1
- data/app/views/active_admin/kaminari/_next_page.html.erb +16 -0
- data/app/views/active_admin/kaminari/_page.html.erb +14 -0
- data/app/views/{kaminari/active_admin_countless → active_admin/kaminari}/_paginator.html.erb +1 -2
- data/app/views/active_admin/kaminari/_prev_page.html.erb +16 -0
- data/app/views/active_admin/page/index.html.arb +5 -2
- data/app/views/active_admin/resource/_active_filters.html.erb +32 -0
- data/app/views/active_admin/resource/_batch_actions_dropdown.html.erb +19 -0
- data/app/views/active_admin/resource/_form.html.arb +15 -0
- data/app/views/active_admin/resource/_form_default.html.arb +11 -0
- data/app/views/active_admin/resource/_index_as_table_default.html.arb +8 -0
- data/app/views/active_admin/resource/_index_blank_slate.html.erb +14 -0
- data/app/views/active_admin/resource/_index_empty_results.html.erb +5 -0
- data/app/views/active_admin/resource/_index_table_actions_default.html.erb +9 -0
- data/app/views/active_admin/resource/_show_default.html.arb +2 -0
- data/app/views/active_admin/resource/edit.html.arb +1 -2
- data/app/views/active_admin/resource/index.html.arb +94 -2
- data/app/views/active_admin/resource/new.html.arb +1 -2
- data/app/views/active_admin/resource/show.html.arb +12 -2
- data/app/views/active_admin/shared/_action_items.html.erb +3 -0
- data/app/views/active_admin/shared/_download_format_links.html.erb +7 -0
- data/app/views/active_admin/shared/_resource_comments.html.erb +51 -0
- data/app/views/active_admin/shared/_sidebar_section.html.arb +6 -0
- data/app/views/active_admin/shared/_sidebar_sections.html.erb +5 -0
- data/app/views/layouts/active_admin.html.erb +20 -0
- data/app/views/layouts/active_admin_logged_out.html.erb +8 -45
- data/config/importmap.rb +5 -0
- data/config/locales/ar.yml +136 -116
- data/config/locales/az.yml +103 -118
- data/config/locales/bg.yml +91 -99
- data/config/locales/bs.yml +95 -101
- data/config/locales/ca.yml +131 -86
- data/config/locales/cs.yml +82 -90
- data/config/locales/da.yml +102 -117
- data/config/locales/de.yml +130 -141
- data/config/locales/el.yml +94 -106
- data/config/locales/en-CA.yml +104 -119
- data/config/locales/en-GB.yml +104 -119
- data/config/locales/en.yml +134 -140
- data/config/locales/eo.yml +107 -123
- data/config/locales/es-MX.yml +70 -78
- data/config/locales/es.yml +129 -138
- data/config/locales/fa.yml +91 -99
- data/config/locales/fi.yml +84 -92
- data/config/locales/fr.yml +135 -120
- data/config/locales/he.yml +103 -118
- data/config/locales/hr.yml +95 -103
- data/config/locales/hu.yml +76 -81
- data/config/locales/id.yml +97 -112
- data/config/locales/it.yml +134 -140
- data/config/locales/ja.yml +109 -120
- data/config/locales/ko.yml +136 -101
- data/config/locales/lt.yml +106 -121
- data/config/locales/lv.yml +70 -75
- data/config/locales/mk.yml +100 -114
- data/config/locales/nb.yml +98 -109
- data/config/locales/nl.yml +113 -122
- data/config/locales/pl.yml +137 -146
- data/config/locales/pt-BR.yml +134 -121
- data/config/locales/pt-PT.yml +71 -76
- data/config/locales/ro.yml +74 -79
- data/config/locales/ru.yml +142 -122
- data/config/locales/sk.yml +131 -146
- data/config/locales/sv-SE.yml +126 -141
- data/config/locales/tr.yml +105 -120
- data/config/locales/uk.yml +140 -119
- data/config/locales/vi.yml +125 -140
- data/config/locales/zh-CN.yml +135 -141
- data/config/locales/zh-TW.yml +136 -116
- data/lib/active_admin/application.rb +6 -14
- data/lib/active_admin/application_settings.rb +1 -1
- data/lib/active_admin/async_count.rb +23 -0
- data/lib/active_admin/batch_actions/controller.rb +1 -4
- data/lib/active_admin/batch_actions/resource_extension.rb +8 -15
- data/lib/active_admin/batch_actions/views/batch_action_form.rb +1 -7
- data/lib/active_admin/batch_actions/views/selection_cells.rb +3 -3
- data/lib/active_admin/batch_actions.rb +4 -9
- data/lib/active_admin/callbacks.rb +6 -4
- data/lib/active_admin/collection_decorator.rb +1 -1
- data/lib/active_admin/component.rb +0 -1
- data/lib/active_admin/csv_builder.rb +2 -2
- data/lib/active_admin/devise.rb +3 -3
- data/lib/active_admin/dsl.rb +3 -3
- data/lib/active_admin/dynamic_settings_node.rb +6 -6
- data/lib/active_admin/engine.rb +23 -7
- data/lib/active_admin/filters/active.rb +8 -6
- data/lib/active_admin/filters/active_filter.rb +2 -10
- data/lib/active_admin/filters/forms.rb +1 -45
- data/lib/active_admin/filters/resource_extension.rb +18 -10
- data/lib/active_admin/filters.rb +5 -7
- data/lib/active_admin/form_builder.rb +14 -17
- data/lib/active_admin/helpers/optional_display.rb +1 -1
- data/lib/active_admin/inputs/filters/base/search_method_select.rb +10 -12
- data/lib/active_admin/inputs/filters/base.rb +1 -1
- data/lib/active_admin/inputs/filters/check_boxes_input.rb +1 -6
- data/lib/active_admin/inputs/filters/date_range_input.rb +4 -2
- data/lib/active_admin/inputs.rb +0 -3
- data/lib/active_admin/localizers.rb +1 -1
- data/lib/active_admin/menu.rb +10 -7
- data/lib/active_admin/menu_collection.rb +1 -1
- data/lib/active_admin/menu_item.rb +24 -3
- data/lib/active_admin/namespace.rb +3 -45
- data/lib/active_admin/namespace_settings.rb +3 -36
- data/lib/active_admin/order_clause.rb +4 -1
- data/lib/active_admin/orm/active_record/comments/views/active_admin_comments.rb +4 -76
- data/lib/active_admin/orm/active_record/comments/views.rb +2 -2
- data/lib/active_admin/orm/active_record/comments.rb +13 -8
- data/lib/active_admin/orm/active_record.rb +1 -1
- data/lib/active_admin/pundit_adapter.rb +3 -3
- data/lib/active_admin/resource/action_items.rb +18 -23
- data/lib/active_admin/resource/naming.rb +2 -3
- data/lib/active_admin/resource/page_presenters.rb +2 -2
- data/lib/active_admin/resource/sidebars.rb +1 -1
- data/lib/active_admin/resource.rb +17 -16
- data/lib/active_admin/resource_collection.rb +1 -1
- data/lib/active_admin/resource_dsl.rb +3 -3
- data/lib/active_admin/scope.rb +11 -1
- data/lib/active_admin/settings_node.rb +1 -1
- data/lib/active_admin/sidebar_section.rb +0 -5
- data/lib/active_admin/version.rb +1 -1
- data/lib/active_admin/view_helpers/method_or_proc_helper.rb +1 -1
- data/lib/active_admin/view_helpers.rb +0 -12
- data/lib/active_admin/views/components/active_admin_form.rb +21 -29
- data/lib/active_admin/views/components/attributes_table.rb +14 -16
- data/lib/active_admin/views/components/index_list.rb +10 -23
- data/lib/active_admin/views/components/paginated_collection.rb +34 -39
- data/lib/active_admin/views/components/panel.rb +3 -11
- data/lib/active_admin/views/components/scopes.rb +39 -26
- data/lib/active_admin/views/components/status_tag.rb +22 -19
- data/lib/active_admin/views/components/table_for.rb +25 -25
- data/lib/active_admin/views/index_as_table.rb +39 -101
- data/lib/active_admin.rb +16 -15
- data/lib/activeadmin.rb +1 -1
- data/lib/generators/active_admin/assets/assets_generator.rb +4 -4
- data/lib/generators/active_admin/assets/templates/active_admin.css +3 -0
- data/lib/generators/active_admin/assets/templates/tailwind.config.js +21 -0
- data/lib/generators/active_admin/devise/devise_generator.rb +2 -2
- data/lib/generators/active_admin/install/install_generator.rb +2 -8
- data/lib/generators/active_admin/install/templates/active_admin.rb.erb +10 -87
- data/lib/generators/active_admin/install/templates/dashboard.rb +8 -25
- data/lib/generators/active_admin/page/page_generator.rb +0 -1
- data/lib/generators/active_admin/resource/resource_generator.rb +50 -7
- data/lib/generators/active_admin/resource/templates/resource.rb.erb +42 -0
- data/lib/generators/active_admin/views_generator.rb +18 -0
- data/plugin.js +414 -0
- data/vendor/bundle/offense.rb +1 -0
- data/vendor/javascript/flowbite.js +1 -0
- data/vendor/javascript/rails_ujs_esm.js +1 -0
- metadata +80 -207
- data/app/assets/javascripts/active_admin/base.js +0 -517
- data/app/assets/stylesheets/active_admin/_base.scss +0 -57
- data/app/assets/stylesheets/active_admin/_forms.scss +0 -315
- data/app/assets/stylesheets/active_admin/_header.scss +0 -188
- data/app/assets/stylesheets/active_admin/_mixins.scss +0 -1
- data/app/assets/stylesheets/active_admin/_normalize.scss +0 -349
- data/app/assets/stylesheets/active_admin/_print.scss +0 -287
- data/app/assets/stylesheets/active_admin/_typography.scss +0 -100
- data/app/assets/stylesheets/active_admin/components/_batch_actions.scss +0 -6
- data/app/assets/stylesheets/active_admin/components/_blank_slates.scss +0 -30
- data/app/assets/stylesheets/active_admin/components/_breadcrumbs.scss +0 -20
- data/app/assets/stylesheets/active_admin/components/_buttons.scss +0 -6
- data/app/assets/stylesheets/active_admin/components/_columns.scss +0 -3
- data/app/assets/stylesheets/active_admin/components/_comments.scss +0 -41
- data/app/assets/stylesheets/active_admin/components/_date_picker.scss +0 -148
- data/app/assets/stylesheets/active_admin/components/_dropdown_menu.scss +0 -154
- data/app/assets/stylesheets/active_admin/components/_flash_messages.scss +0 -37
- data/app/assets/stylesheets/active_admin/components/_grid.scss +0 -9
- data/app/assets/stylesheets/active_admin/components/_index_list.scss +0 -12
- data/app/assets/stylesheets/active_admin/components/_links.scss +0 -5
- data/app/assets/stylesheets/active_admin/components/_modal_dialog.scss +0 -34
- data/app/assets/stylesheets/active_admin/components/_pagination.scss +0 -58
- data/app/assets/stylesheets/active_admin/components/_panels.scss +0 -6
- data/app/assets/stylesheets/active_admin/components/_scopes.scss +0 -13
- data/app/assets/stylesheets/active_admin/components/_status_tags.scss +0 -12
- data/app/assets/stylesheets/active_admin/components/_table_tools.scss +0 -70
- data/app/assets/stylesheets/active_admin/components/_tables.scss +0 -112
- data/app/assets/stylesheets/active_admin/components/_tabs.scss +0 -68
- data/app/assets/stylesheets/active_admin/components/_unsupported_browser.scss +0 -16
- data/app/assets/stylesheets/active_admin/mixins/_all.scss +0 -8
- data/app/assets/stylesheets/active_admin/mixins/_buttons.scss +0 -65
- data/app/assets/stylesheets/active_admin/mixins/_gradients.scss +0 -28
- data/app/assets/stylesheets/active_admin/mixins/_rounded.scss +0 -22
- data/app/assets/stylesheets/active_admin/mixins/_sections.scss +0 -41
- data/app/assets/stylesheets/active_admin/mixins/_shadows.scss +0 -15
- data/app/assets/stylesheets/active_admin/mixins/_typography.scss +0 -3
- data/app/assets/stylesheets/active_admin/mixins/_utilities.scss +0 -17
- data/app/assets/stylesheets/active_admin/mixins/_variables.scss +0 -51
- data/app/assets/stylesheets/active_admin/pages/_logged_out.scss +0 -44
- data/app/assets/stylesheets/active_admin/structure/_footer.scss +0 -19
- data/app/assets/stylesheets/active_admin/structure/_main_structure.scss +0 -29
- data/app/assets/stylesheets/active_admin/structure/_title_bar.scss +0 -43
- data/app/javascript/active_admin/base.js +0 -28
- data/app/javascript/active_admin/ext/jquery-ui.js +0 -7
- data/app/javascript/active_admin/ext/jquery.js +0 -9
- data/app/javascript/active_admin/initializers/batch-actions.js +0 -61
- data/app/javascript/active_admin/initializers/checkbox-toggler.js +0 -3
- data/app/javascript/active_admin/initializers/datepicker.js +0 -16
- data/app/javascript/active_admin/initializers/dropdown-menu.js +0 -9
- data/app/javascript/active_admin/initializers/filters.js +0 -10
- data/app/javascript/active_admin/initializers/has-many.js +0 -98
- data/app/javascript/active_admin/initializers/per-page.js +0 -13
- data/app/javascript/active_admin/initializers/table-checkbox-toggler.js +0 -3
- data/app/javascript/active_admin/initializers/tabs.js +0 -6
- data/app/javascript/active_admin/lib/checkbox-toggler.js +0 -49
- data/app/javascript/active_admin/lib/dropdown-menu.js +0 -116
- data/app/javascript/active_admin/lib/filters.js +0 -39
- data/app/javascript/active_admin/lib/modal-dialog.js +0 -63
- data/app/javascript/active_admin/lib/per-page.js +0 -38
- data/app/javascript/active_admin/lib/table-checkbox-toggler.js +0 -38
- data/app/javascript/active_admin/lib/utils.js +0 -40
- data/app/views/kaminari/active_admin/_first_page.html.erb +0 -11
- data/app/views/kaminari/active_admin/_gap.html.erb +0 -8
- data/app/views/kaminari/active_admin/_last_page.html.erb +0 -11
- data/app/views/kaminari/active_admin/_next_page.html.erb +0 -11
- data/app/views/kaminari/active_admin/_page.html.erb +0 -12
- data/app/views/kaminari/active_admin/_paginator.html.erb +0 -25
- data/app/views/kaminari/active_admin/_prev_page.html.erb +0 -11
- data/app/views/kaminari/active_admin_countless/_first_page.html.erb +0 -11
- data/app/views/kaminari/active_admin_countless/_next_page.html.erb +0 -11
- data/app/views/kaminari/active_admin_countless/_page.html.erb +0 -12
- data/app/views/kaminari/active_admin_countless/_prev_page.html.erb +0 -11
- data/app/views/layouts/active_admin.html.arb +0 -2
- data/config/locales/de-CH.yml +0 -94
- data/lib/active_admin/abstract_view_factory.rb +0 -48
- data/lib/active_admin/asset_registration.rb +0 -30
- data/lib/active_admin/base_controller/menu.rb +0 -35
- data/lib/active_admin/batch_actions/views/batch_action_selector.rb +0 -59
- data/lib/active_admin/filters/active_sidebar.rb +0 -28
- data/lib/active_admin/generators/boilerplate.rb +0 -54
- data/lib/active_admin/helpers/collection.rb +0 -21
- data/lib/active_admin/helpers/i18n.rb +0 -8
- data/lib/active_admin/inputs/datepicker_input.rb +0 -28
- data/lib/active_admin/inputs/filters/date_picker_input.rb +0 -14
- data/lib/active_admin/orm/active_record/comments/show_page_helper.rb +0 -24
- data/lib/active_admin/orm/mongoid.rb +0 -2
- data/lib/active_admin/resource_controller/sidebars.rb +0 -19
- data/lib/active_admin/resource_controller.rb +0 -68
- data/lib/active_admin/view_factory.rb +0 -28
- data/lib/active_admin/view_helpers/active_admin_application_helper.rb +0 -13
- data/lib/active_admin/view_helpers/auto_link_helper.rb +0 -46
- data/lib/active_admin/view_helpers/breadcrumb_helper.rb +0 -34
- data/lib/active_admin/view_helpers/display_helper.rb +0 -119
- data/lib/active_admin/view_helpers/download_format_links_helper.rb +0 -60
- data/lib/active_admin/view_helpers/fields_for.rb +0 -51
- data/lib/active_admin/view_helpers/flash_helper.rb +0 -15
- data/lib/active_admin/view_helpers/form_helper.rb +0 -21
- data/lib/active_admin/view_helpers/scope_name_helper.rb +0 -17
- data/lib/active_admin/view_helpers/sidebar_helper.rb +0 -16
- data/lib/active_admin/view_helpers/title_helper.rb +0 -12
- data/lib/active_admin/view_helpers/view_factory_helper.rb +0 -12
- data/lib/active_admin/views/action_items.rb +0 -18
- data/lib/active_admin/views/components/active_filters_sidebar_content.rb +0 -59
- data/lib/active_admin/views/components/blank_slate.rb +0 -18
- data/lib/active_admin/views/components/columns.rb +0 -162
- data/lib/active_admin/views/components/dropdown_menu.rb +0 -69
- data/lib/active_admin/views/components/menu.rb +0 -33
- data/lib/active_admin/views/components/menu_item.rb +0 -59
- data/lib/active_admin/views/components/sidebar.rb +0 -14
- data/lib/active_admin/views/components/sidebar_section.rb +0 -35
- data/lib/active_admin/views/components/site_title.rb +0 -55
- data/lib/active_admin/views/components/tabs.rb +0 -41
- data/lib/active_admin/views/components/unsupported_browser.rb +0 -12
- data/lib/active_admin/views/footer.rb +0 -32
- data/lib/active_admin/views/header.rb +0 -20
- data/lib/active_admin/views/index_as_block.rb +0 -37
- data/lib/active_admin/views/index_as_blog.rb +0 -156
- data/lib/active_admin/views/index_as_grid.rb +0 -81
- data/lib/active_admin/views/pages/base.rb +0 -134
- data/lib/active_admin/views/pages/form.rb +0 -65
- data/lib/active_admin/views/pages/index.rb +0 -166
- data/lib/active_admin/views/pages/layout.rb +0 -27
- data/lib/active_admin/views/pages/page.rb +0 -31
- data/lib/active_admin/views/pages/show.rb +0 -60
- data/lib/active_admin/views/tabbed_navigation.rb +0 -12
- data/lib/active_admin/views/title_bar.rb +0 -56
- data/lib/generators/active_admin/assets/templates/active_admin.js +0 -1
- data/lib/generators/active_admin/assets/templates/active_admin.scss +0 -17
- data/lib/generators/active_admin/resource/templates/admin.rb.erb +0 -46
- data/lib/generators/active_admin/webpacker/plugins/jquery.js +0 -7
- data/lib/generators/active_admin/webpacker/templates/active_admin.js +0 -5
- data/lib/generators/active_admin/webpacker/templates/active_admin.scss +0 -17
- data/lib/generators/active_admin/webpacker/templates/print.scss +0 -2
- data/lib/generators/active_admin/webpacker/webpacker_generator.rb +0 -27
- data/vendor/assets/javascripts/jquery-ui/data.js +0 -45
- data/vendor/assets/javascripts/jquery-ui/disable-selection.js +0 -51
- data/vendor/assets/javascripts/jquery-ui/focusable.js +0 -89
- data/vendor/assets/javascripts/jquery-ui/form-reset-mixin.js +0 -83
- data/vendor/assets/javascripts/jquery-ui/form.js +0 -25
- data/vendor/assets/javascripts/jquery-ui/ie.js +0 -20
- data/vendor/assets/javascripts/jquery-ui/keycode.js +0 -51
- data/vendor/assets/javascripts/jquery-ui/labels.js +0 -71
- data/vendor/assets/javascripts/jquery-ui/plugin.js +0 -49
- data/vendor/assets/javascripts/jquery-ui/position.js +0 -513
- data/vendor/assets/javascripts/jquery-ui/safe-active-element.js +0 -46
- data/vendor/assets/javascripts/jquery-ui/safe-blur.js +0 -27
- data/vendor/assets/javascripts/jquery-ui/scroll-parent.js +0 -50
- data/vendor/assets/javascripts/jquery-ui/tabbable.js +0 -41
- data/vendor/assets/javascripts/jquery-ui/unique-id.js +0 -54
- data/vendor/assets/javascripts/jquery-ui/version.js +0 -20
- data/vendor/assets/javascripts/jquery-ui/widget.js +0 -758
- data/vendor/assets/javascripts/jquery-ui/widgets/button.js +0 -454
- data/vendor/assets/javascripts/jquery-ui/widgets/checkboxradio.js +0 -294
- data/vendor/assets/javascripts/jquery-ui/widgets/controlgroup.js +0 -304
- data/vendor/assets/javascripts/jquery-ui/widgets/datepicker.js +0 -2243
- data/vendor/assets/javascripts/jquery-ui/widgets/dialog.js +0 -971
- data/vendor/assets/javascripts/jquery-ui/widgets/draggable.js +0 -1268
- data/vendor/assets/javascripts/jquery-ui/widgets/mouse.js +0 -241
- data/vendor/assets/javascripts/jquery-ui/widgets/resizable.js +0 -1228
- data/vendor/assets/javascripts/jquery-ui/widgets/sortable.js +0 -1622
- data/vendor/assets/javascripts/jquery-ui/widgets/tabs.js +0 -931
- /data/{lib → app/controllers}/active_admin/resource_controller/decorators.rb +0 -0
- /data/{lib → app/controllers}/active_admin/resource_controller/polymorphic_routes.rb +0 -0
- /data/{lib → app/controllers}/active_admin/resource_controller/resource_class_methods.rb +0 -0
- /data/lib/{active_admin/orm/mongoid/.gitkeep → generators/active_admin/assets/templates/builds/.keep} +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b49e0fb31e91581e8e596bc290f16d61ca571de10819180593aff275af5d123f
|
|
4
|
+
data.tar.gz: 32af2d9b9d3594945e7dc50f8d7ffe4e83ff95f1a5667ae155f193ef5ab1a807
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: df08dcdc5efdb3937460d48306aa6314e2a29a581bace1b7d2566a0e3f6614c95dcec5b52c54ca4d081abb2ad78ae55747b3a8c20c5e4a6f4a226952e280c365
|
|
7
|
+
data.tar.gz: f06d90165c82d019d9f298e88415f6c309e0178adb8a075526925d37e043c04b9851e037e36f2a44ce549a64637722ad825e228fa78332ca4ca2385fd1e31bf2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,76 +1,6 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
## 3.4.0 [☰](https://github.com/activeadmin/activeadmin/compare/v3.3.0..v3.4.0)
|
|
6
|
-
|
|
7
|
-
* Add Rails 8.1 compatibility and drop Ruby < 3.0 support [#8837] by [@tagliala]
|
|
8
|
-
|
|
9
|
-
## 3.3.0 [☰](https://github.com/activeadmin/activeadmin/compare/v3.2.5..v3.3.0)
|
|
10
|
-
|
|
11
|
-
### Enhancements
|
|
12
|
-
|
|
13
|
-
* Improve v3 docs regarding compatibility with vite_rails [#8548] by [@mattbrictson]
|
|
14
|
-
* Backport test against Rails 8.0 [#8556] by [@mgrunberg] and [@tagliala]
|
|
15
|
-
* Test against Ruby 3.4 [#8614] by [@tagliala]
|
|
16
|
-
* Backport Support sortable argument in id_column [#8650] by [@jaynetics]
|
|
17
|
-
* Backport Support title for id_column [#8652] by [@mgrunberg]
|
|
18
|
-
|
|
19
|
-
### Bug Fixes
|
|
20
|
-
|
|
21
|
-
* Backport Fix attributes passed to form has_many not being set on new record form items [#8551] by [@Fs00]
|
|
22
|
-
* Backport Fix deprecation warning in Ruby 3.4 [#8596] by [@tagliala]
|
|
23
|
-
* Backport Fix circular require warning in belongs_to.rb [#8601] by [@tagliala]
|
|
24
|
-
|
|
25
|
-
## 3.2.5 [☰](https://github.com/activeadmin/activeadmin/compare/v3.2.4..v3.2.5)
|
|
26
|
-
|
|
27
|
-
### Enhancements
|
|
28
|
-
|
|
29
|
-
* Backport Add favicon to template app to fix Rails 7.2 test suite run [#8468] by [@mgrunberg]
|
|
30
|
-
* Backport Use attribute_types instead of columns_hash to determine type [#8469] by [@mgrunberg]
|
|
31
|
-
* Backport Optimize count query for pagination_total: false option [#8470] by [@mgrunberg]
|
|
32
|
-
|
|
33
|
-
### Bug Fixes
|
|
34
|
-
|
|
35
|
-
* Restore inner span tag to form inputs legend [#8467] by [@denisahearn]
|
|
36
|
-
|
|
37
|
-
## 3.2.4 [☰](https://github.com/activeadmin/activeadmin/compare/v3.2.3..v3.2.4)
|
|
38
|
-
|
|
39
|
-
### Enhancements
|
|
40
|
-
|
|
41
|
-
* Test against Rails 7.2 [#8434] by [@mgrunberg]
|
|
42
|
-
|
|
43
|
-
### Bug Fixes
|
|
44
|
-
|
|
45
|
-
* Backport Improve form f.inputs attributes rendering [#8446] by [@amiel]
|
|
46
|
-
|
|
47
|
-
## 3.2.3 [☰](https://github.com/activeadmin/activeadmin/compare/v3.2.2..v3.2.3)
|
|
48
|
-
|
|
49
|
-
### Enhancements
|
|
50
|
-
|
|
51
|
-
* Backport better implementation of counter-cache-column check [#8412] by [@plashchynski]
|
|
52
|
-
|
|
53
|
-
### Bug Fixes
|
|
54
|
-
|
|
55
|
-
* Remove deprecation warnings when building with dart sass >= 1.77.7 [#8405] by [@mgrunberg]
|
|
56
|
-
|
|
57
|
-
## 3.2.2 [☰](https://github.com/activeadmin/activeadmin/compare/v3.2.1..v3.2.2)
|
|
58
|
-
|
|
59
|
-
### Security Fixes
|
|
60
|
-
|
|
61
|
-
* Backport Fix potential XSS issue when rendering form legends [#8349] by
|
|
62
|
-
[@deivid-rodriguez]
|
|
63
|
-
|
|
64
|
-
### Enhancements
|
|
65
|
-
|
|
66
|
-
* Update vendored jQuery UI to 1.13.3 [#8329] by [@tagliala]
|
|
67
|
-
|
|
68
|
-
## 3.2.1 [☰](https://github.com/activeadmin/activeadmin/compare/v3.2.0..v3.2.1)
|
|
69
|
-
|
|
70
|
-
### Enhancements
|
|
71
|
-
|
|
72
|
-
* Backport Suppress ruby 3.3 warning [#8310] by [@mgrunberg]
|
|
73
|
-
* Backport Recommend using target="_blank" instead of target="blank" [#8311] by [@mgrunberg]
|
|
3
|
+
[Future changelogs have moved to GitHub Releases](https://github.com/activeadmin/activeadmin/releases)
|
|
74
4
|
|
|
75
5
|
## 3.2.0 [☰](https://github.com/activeadmin/activeadmin/compare/v3.1.0..v3.2.0)
|
|
76
6
|
|
|
@@ -521,7 +451,7 @@ _No changes_.
|
|
|
521
451
|
* Fixed `if:` scope option when a lambda is passed. [#5501] by [@deivid-rodriguez]
|
|
522
452
|
* Comment validation adding redundant errors when resource is missing. [#5517] by [@deivid-rodriguez]
|
|
523
453
|
* Fixed resource filtering by association when the resource has custom primary key. [#5446] by [@wasifhossain]
|
|
524
|
-
* Fixed "create
|
|
454
|
+
* Fixed "create another" checkbox styling. [#5324] by [@faucct]
|
|
525
455
|
|
|
526
456
|
## 1.3.1 [☰](https://github.com/activeadmin/activeadmin/compare/v1.3.0..v1.3.1)
|
|
527
457
|
|
|
@@ -681,7 +611,7 @@ _No changes_.
|
|
|
681
611
|
|
|
682
612
|
* Prevents access to formats that the user not permitted to see. [#4867] by [@Fivell] and [@timoschilling]
|
|
683
613
|
* Prevents potential DOS attack via Ruby symbols. [#1926] by [@seanlinsley]
|
|
684
|
-
* [this isn't an issue for those using Ruby >= 2.2](
|
|
614
|
+
* [this isn't an issue for those using Ruby >= 2.2](https://rubykaigi.org/2014/presentation/S-NarihiroNakamura)
|
|
685
615
|
|
|
686
616
|
### Bug Fixes
|
|
687
617
|
|
|
@@ -963,32 +893,7 @@ Please check [0-6-stable] for previous changes.
|
|
|
963
893
|
[#8102]: https://github.com/activeadmin/activeadmin/pull/8102
|
|
964
894
|
[#8105]: https://github.com/activeadmin/activeadmin/pull/8105
|
|
965
895
|
[#8106]: https://github.com/activeadmin/activeadmin/pull/8106
|
|
966
|
-
|
|
967
|
-
[#8164]: https://github.com/activeadmin/activeadmin/pull/8164
|
|
968
|
-
[#8165]: https://github.com/activeadmin/activeadmin/pull/8165
|
|
969
|
-
[#8166]: https://github.com/activeadmin/activeadmin/pull/8166
|
|
970
|
-
[#8167]: https://github.com/activeadmin/activeadmin/pull/8167
|
|
971
|
-
[#8310]: https://github.com/activeadmin/activeadmin/pull/8310
|
|
972
|
-
[#8311]: https://github.com/activeadmin/activeadmin/pull/8311
|
|
973
|
-
[#8329]: https://github.com/activeadmin/activeadmin/pull/8329
|
|
974
|
-
[#8349]: https://github.com/activeadmin/activeadmin/pull/8349
|
|
975
|
-
[#8405]: https://github.com/activeadmin/activeadmin/pull/8405
|
|
976
|
-
[#8412]: https://github.com/activeadmin/activeadmin/pull/8412
|
|
977
|
-
[#8434]: https://github.com/activeadmin/activeadmin/pull/8434
|
|
978
|
-
[#8446]: https://github.com/activeadmin/activeadmin/pull/8446
|
|
979
|
-
[#8467]: https://github.com/activeadmin/activeadmin/pull/8467
|
|
980
|
-
[#8468]: https://github.com/activeadmin/activeadmin/pull/8468
|
|
981
|
-
[#8469]: https://github.com/activeadmin/activeadmin/pull/8469
|
|
982
|
-
[#8470]: https://github.com/activeadmin/activeadmin/pull/8470
|
|
983
|
-
[#8548]: https://github.com/activeadmin/activeadmin/pull/8548
|
|
984
|
-
[#8551]: https://github.com/activeadmin/activeadmin/pull/8551
|
|
985
|
-
[#8556]: https://github.com/activeadmin/activeadmin/pull/8556
|
|
986
|
-
[#8596]: https://github.com/activeadmin/activeadmin/pull/8596
|
|
987
|
-
[#8601]: https://github.com/activeadmin/activeadmin/pull/8601
|
|
988
|
-
[#8614]: https://github.com/activeadmin/activeadmin/pull/8614
|
|
989
|
-
[#8650]: https://github.com/activeadmin/activeadmin/pull/8650
|
|
990
|
-
[#8652]: https://github.com/activeadmin/activeadmin/pull/8652
|
|
991
|
-
[#8837]: https://github.com/activeadmin/activeadmin/pull/8837
|
|
896
|
+
|
|
992
897
|
|
|
993
898
|
[@1000ship]: https://github.com/1000ship
|
|
994
899
|
[@5t111111]: https://github.com/5t111111
|
|
@@ -1017,7 +922,6 @@ Please check [0-6-stable] for previous changes.
|
|
|
1017
922
|
[@craigmcnamara]: https://github.com/craigmcnamara
|
|
1018
923
|
[@DanielHeath]: https://github.com/DanielHeath
|
|
1019
924
|
[@deivid-rodriguez]: https://github.com/deivid-rodriguez
|
|
1020
|
-
[@denisahearn]: https://github.com/denisahearn
|
|
1021
925
|
[@dennisvdvliet]: https://github.com/dennisvdvliet
|
|
1022
926
|
[@dhyegofernando]: https://github.com/dhyegofernando
|
|
1023
927
|
[@dkniffin]: https://github.com/dkniffin
|
|
@@ -1069,7 +973,6 @@ Please check [0-6-stable] for previous changes.
|
|
|
1069
973
|
[@Looooong]: https://github.com/Looooong
|
|
1070
974
|
[@lubosch]: https://github.com/lubosch
|
|
1071
975
|
[@markstory]: https://github.com/markstory
|
|
1072
|
-
[@mattbrictson]: https://github.com/mattbrictson
|
|
1073
976
|
[@mauriciopasquier]: https://github.com/mauriciopasquier
|
|
1074
977
|
[@mconiglio]: https://github.com/mconiglio
|
|
1075
978
|
[@mgrunberg]: https://github.com/mgrunberg
|
|
@@ -1085,7 +988,6 @@ Please check [0-6-stable] for previous changes.
|
|
|
1085
988
|
[@orkhan]: https://github.com/orkhan
|
|
1086
989
|
[@panasyuk]: https://github.com/panasyuk
|
|
1087
990
|
[@PChambino]: https://github.com/PChambino
|
|
1088
|
-
[@plashchynski]: https://github.com/plashchynski
|
|
1089
991
|
[@potatosalad]: https://github.com/potatosalad
|
|
1090
992
|
[@pranas]: https://github.com/pranas
|
|
1091
993
|
[@ray-curran]: https://github.com/ray-curran
|
data/CONTRIBUTING.md
CHANGED
|
@@ -1,52 +1,34 @@
|
|
|
1
|
-
|
|
1
|
+
# Contributing
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
like you that make Active Admin such a great tool.
|
|
3
|
+
Thanks for your interest in contributing to ActiveAdmin! Please take a moment to review this document **before submitting a pull request**.
|
|
5
4
|
|
|
6
|
-
|
|
5
|
+
## Pull requests
|
|
7
6
|
|
|
8
|
-
|
|
9
|
-
generally best if you get confirmation of your bug or approval for your feature
|
|
10
|
-
request this way before starting to code.
|
|
7
|
+
**Please ask first before starting work on any significant new features.**
|
|
11
8
|
|
|
12
|
-
|
|
13
|
-
Overflow], the issue tracker is only for bugs and feature requests.
|
|
9
|
+
It's never a fun experience to have your pull request declined after investing a lot of time and effort into a new feature. To avoid this from happening, we request that contributors create [a feature request](https://github.com/activeadmin/activeadmin/discussions/new?category=ideas) to first discuss any new ideas. Your ideas and suggestions are welcome!
|
|
14
10
|
|
|
15
|
-
|
|
11
|
+
Please ensure that the tests are passing when submitting a pull request. If you're adding new features to ActiveAdmin, please include tests.
|
|
16
12
|
|
|
17
|
-
|
|
18
|
-
a branch with a descriptive name.
|
|
13
|
+
## Where do I go from here?
|
|
19
14
|
|
|
20
|
-
|
|
15
|
+
For any questions, support, or ideas, etc. [please create a GitHub discussion](https://github.com/activeadmin/activeadmin/discussions/new). If you've noticed a bug, [please submit an issue][new issue].
|
|
21
16
|
|
|
22
|
-
|
|
23
|
-
git checkout -b 325-add-japanese-translations
|
|
24
|
-
```
|
|
17
|
+
### Fork and create a branch
|
|
25
18
|
|
|
26
|
-
|
|
19
|
+
If this is something you think you can fix, then [fork Active Admin] and create
|
|
20
|
+
a branch with a descriptive name.
|
|
27
21
|
|
|
28
|
-
|
|
22
|
+
### Get the test suite running
|
|
29
23
|
|
|
30
|
-
You'll also need
|
|
24
|
+
Make sure you're using a recent Ruby and Node version. You'll also need Chrome installed in order to run Cucumber scenarios.
|
|
31
25
|
|
|
32
26
|
Now install the development dependencies:
|
|
33
27
|
|
|
34
28
|
```sh
|
|
29
|
+
gem install foreman
|
|
35
30
|
bundle install
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
Then install javascript dependencies with [Yarn] (requires a current version of [Node.js]):
|
|
39
|
-
|
|
40
|
-
```sh
|
|
41
|
-
bin/yarn install
|
|
42
|
-
```
|
|
43
|
-
|
|
44
|
-
JS assets are located in `app/javascript/active_admin`. The config will take care of compiling a complete bundle with [Rollup] using the `build` script and exported to `app/assets/javascripts/active_admin/base.js` ready to be used by Sprockets.
|
|
45
|
-
|
|
46
|
-
To update javascript bundle run (add `-w` flag for watch mode):
|
|
47
|
-
|
|
48
|
-
```sh
|
|
49
|
-
bin/yarn build
|
|
31
|
+
yarn install
|
|
50
32
|
```
|
|
51
33
|
|
|
52
34
|
Now you should be able to run the entire suite using:
|
|
@@ -65,20 +47,13 @@ you use the correct Gemfile, for example:
|
|
|
65
47
|
export BUNDLE_GEMFILE=gemfiles/rails_61/Gemfile
|
|
66
48
|
```
|
|
67
49
|
|
|
68
|
-
**Warning** SCSS assets are aimed to be used indifferently with Sprockets **and** webpacker.
|
|
69
|
-
As such, make sure not to use any sass-rails directives such as `asset-url` or `image-url`.
|
|
70
|
-
|
|
71
50
|
### Implement your fix or feature
|
|
72
51
|
|
|
73
|
-
At this point, you're ready to make your changes
|
|
74
|
-
everyone is a beginner at first :smile_cat:
|
|
52
|
+
At this point, you're ready to make your changes. Feel free to ask for help.
|
|
75
53
|
|
|
76
54
|
### View your changes in a Rails application
|
|
77
55
|
|
|
78
|
-
|
|
79
|
-
a look at your changes in a browser.
|
|
80
|
-
|
|
81
|
-
To boot up a test Rails app:
|
|
56
|
+
Make sure to take a look at your changes in a browser. To boot up a test Rails app:
|
|
82
57
|
|
|
83
58
|
```sh
|
|
84
59
|
bin/rake local server
|
|
@@ -87,11 +62,7 @@ bin/rake local server
|
|
|
87
62
|
This will automatically create a Rails app if none already exists, and store it
|
|
88
63
|
in the `tmp/development_apps` folder.
|
|
89
64
|
|
|
90
|
-
You should now be able to open <http://localhost:3000/admin> in your browser.
|
|
91
|
-
You can log in using:
|
|
92
|
-
|
|
93
|
-
*User*: admin@example.com
|
|
94
|
-
*Password*: password
|
|
65
|
+
You should now be able to open <http://localhost:3000/admin> in your browser and log in using `admin@example.com` and `password`.
|
|
95
66
|
|
|
96
67
|
If you need to perform any other commands on the test application, just pass
|
|
97
68
|
them to the `local` rake task. For example, to boot the rails console:
|
|
@@ -100,88 +71,32 @@ them to the `local` rake task. For example, to boot the rails console:
|
|
|
100
71
|
bin/rake local console
|
|
101
72
|
```
|
|
102
73
|
|
|
103
|
-
Or to migrate the database
|
|
104
|
-
with the db:
|
|
74
|
+
Or to migrate the database for a new migration:
|
|
105
75
|
|
|
106
76
|
```sh
|
|
107
77
|
bin/rake local db:migrate
|
|
108
78
|
```
|
|
109
79
|
|
|
110
|
-
###
|
|
111
|
-
|
|
112
|
-
At this point, you should switch back to your master branch and make sure it's
|
|
113
|
-
up to date with Active Admin's master branch:
|
|
114
|
-
|
|
115
|
-
```sh
|
|
116
|
-
git remote add upstream git@github.com:activeadmin/activeadmin.git
|
|
117
|
-
git checkout master
|
|
118
|
-
git pull upstream master
|
|
119
|
-
```
|
|
120
|
-
|
|
121
|
-
Then update your feature branch from your local copy of master, and push it!
|
|
122
|
-
|
|
123
|
-
```sh
|
|
124
|
-
git checkout 325-add-japanese-translations
|
|
125
|
-
git rebase master
|
|
126
|
-
git push --set-upstream origin 325-add-japanese-translations
|
|
127
|
-
```
|
|
128
|
-
|
|
129
|
-
Finally, go to GitHub and [make a Pull Request][] :D
|
|
130
|
-
|
|
131
|
-
Github Actions will run our test suite against all supported Rails versions. We
|
|
132
|
-
care about quality, so your PR won't be merged until all tests pass. It's
|
|
133
|
-
unlikely, but it's possible that your changes pass tests in one Rails version
|
|
134
|
-
but fail in another. In that case, you'll have to setup your development
|
|
135
|
-
environment (as explained in step 3) to use the problematic Rails version, and
|
|
136
|
-
investigate what's going on!
|
|
137
|
-
|
|
138
|
-
### Keeping your Pull Request updated
|
|
139
|
-
|
|
140
|
-
If a maintainer asks you to "rebase" your PR, they're saying that a lot of code
|
|
141
|
-
has changed, and that you need to update your branch so it's easier to merge.
|
|
142
|
-
|
|
143
|
-
To learn more about rebasing in Git, there are a lot of [good][git rebasing]
|
|
144
|
-
[resources][interactive rebase] but here's the suggested workflow:
|
|
145
|
-
|
|
146
|
-
```sh
|
|
147
|
-
git checkout 325-add-japanese-translations
|
|
148
|
-
git pull --rebase upstream master
|
|
149
|
-
git push --force-with-lease 325-add-japanese-translations
|
|
150
|
-
```
|
|
80
|
+
### Create a Pull Request
|
|
151
81
|
|
|
152
|
-
|
|
82
|
+
At this point, if your changes look good and tests are passing, you are ready to create a pull request.
|
|
153
83
|
|
|
154
|
-
|
|
84
|
+
Github Actions will run our test suite against all supported Rails versions. It's possible that your changes pass tests in one Rails version but fail in another. In that case, you'll have to setup your development
|
|
85
|
+
environment with the Gemfile for the problematic Rails version, and investigate what's going on.
|
|
155
86
|
|
|
156
|
-
|
|
157
|
-
* It has been approved by at least two maintainers. If it was a maintainer who
|
|
158
|
-
opened the PR, only one extra approval is needed.
|
|
159
|
-
* It has no requested changes.
|
|
160
|
-
* It is up to date with current master.
|
|
87
|
+
## Merging a PR (maintainers only)
|
|
161
88
|
|
|
162
|
-
Any maintainer is allowed to merge a PR if all of these conditions
|
|
163
|
-
met.
|
|
89
|
+
A PR can only be merged into master by a maintainer if: CI is passing, approved by another maintainer and is up to date with the default branch. Any maintainer is allowed to merge a PR if all of these conditions ae met.
|
|
164
90
|
|
|
165
|
-
|
|
91
|
+
## Shipping a release (maintainers only)
|
|
166
92
|
|
|
167
93
|
Maintainers need to do the following to push out a release:
|
|
168
94
|
|
|
169
|
-
*
|
|
170
|
-
*
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
* Run
|
|
174
|
-
*
|
|
175
|
-
* Run `bin/rake release` from the target branch once the PR is merged.
|
|
95
|
+
* Create a feature branch from master and make sure it's up to date.
|
|
96
|
+
* Run `bin/prep-release [version]` and commit the changes. Use Ruby version format. NPM is handled automatically.
|
|
97
|
+
* Optional: To confirm the release contents, run `gem build` (extract contents) and `npm publish --dry-run`.
|
|
98
|
+
* Review and merge the PR.
|
|
99
|
+
* Run `bin/rake release` from the default branch once the PR is merged.
|
|
100
|
+
* [Create a GitHub Release](https://github.com/activeadmin/activeadmin/releases/new) by selecting the tag and generating the release notes.
|
|
176
101
|
|
|
177
|
-
[chandler]: https://github.com/mattbrictson/chandler#2-configure-credentials
|
|
178
|
-
[Stack Overflow]: http://stackoverflow.com/questions/tagged/activeadmin
|
|
179
102
|
[new issue]: https://github.com/activeadmin/activeadmin/issues/new
|
|
180
|
-
[fork Active Admin]: https://help.github.com/articles/fork-a-repo
|
|
181
|
-
[make a pull request]: https://help.github.com/articles/creating-a-pull-request
|
|
182
|
-
[git rebasing]: http://git-scm.com/book/en/Git-Branching-Rebasing
|
|
183
|
-
[interactive rebase]: https://help.github.com/en/github/using-git/about-git-rebase
|
|
184
|
-
[shortcut reference links]: https://github.github.com/gfm/#shortcut-reference-link
|
|
185
|
-
[Rollup]: https://rollupjs.org/guide/en/#quick-start
|
|
186
|
-
[Yarn]: https://yarnpkg.com/en/docs/install
|
|
187
|
-
[Node.js]: https://nodejs.org/en/
|
data/README.md
CHANGED
|
@@ -3,11 +3,10 @@
|
|
|
3
3
|
[Active Admin](https://activeadmin.info) is a Ruby on Rails framework for
|
|
4
4
|
creating elegant backends for website administration.
|
|
5
5
|
|
|
6
|
-
[![Version
|
|
7
|
-
[![Github Actions
|
|
8
|
-
[![Coverage
|
|
9
|
-
[![Tidelift
|
|
10
|
-
[![Inch CI ][inch_badge]][inch]
|
|
6
|
+
[![Version][rubygems_badge]][rubygems]
|
|
7
|
+
[![Github Actions][actions_badge]][actions]
|
|
8
|
+
[![Coverage][coverage_badge]][coverage]
|
|
9
|
+
[![Tidelift][tidelift_badge]][tidelift]
|
|
11
10
|
|
|
12
11
|
## Goals
|
|
13
12
|
|
|
@@ -17,8 +16,8 @@ creating elegant backends for website administration.
|
|
|
17
16
|
|
|
18
17
|
## Getting started
|
|
19
18
|
|
|
20
|
-
*
|
|
21
|
-
*
|
|
19
|
+
* Review [the documentation][docs].
|
|
20
|
+
* For help, questions, etc. [discuss ActiveAdmin on GitHub](https://github.com/activeadmin/activeadmin/discussions) or use [StackOverflow][stackoverflow]
|
|
22
21
|
* The [wiki] includes links to tutorials, articles and sample projects.
|
|
23
22
|
|
|
24
23
|
## For enterprise
|
|
@@ -26,15 +25,6 @@ creating elegant backends for website administration.
|
|
|
26
25
|
Active Admin for enterprise is available via the Tidelift subscription. [Learn
|
|
27
26
|
More][tidelift_enterprise].
|
|
28
27
|
|
|
29
|
-
## Need help?
|
|
30
|
-
|
|
31
|
-
Please use [StackOverflow][stackoverflow] for help requests and how-to questions.
|
|
32
|
-
|
|
33
|
-
Please open GitHub issues for bugs and enhancements only, not general help requests.
|
|
34
|
-
Please search previous issues (and Google and StackOverflow) before creating a new issue.
|
|
35
|
-
|
|
36
|
-
Google Groups, IRC #activeadmin and Gitter are not actively monitored.
|
|
37
|
-
|
|
38
28
|
## Want to contribute?
|
|
39
29
|
|
|
40
30
|
If you want to contribute through code or documentation, the [Contributing
|
|
@@ -58,14 +48,14 @@ sponsor for the project, and also submit expenses to it.
|
|
|
58
48
|
|
|
59
49
|
We try not to reinvent the wheel, so Active Admin is built with other open source projects:
|
|
60
50
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
[
|
|
64
|
-
[
|
|
65
|
-
[
|
|
66
|
-
[
|
|
67
|
-
[
|
|
68
|
-
[
|
|
51
|
+
* [Arbre]
|
|
52
|
+
* [Devise]
|
|
53
|
+
* [Flowbite](https://flowbite.com)
|
|
54
|
+
* [Formtastic]
|
|
55
|
+
* [Inherited Resources]
|
|
56
|
+
* [Kaminari]
|
|
57
|
+
* [Ransack]
|
|
58
|
+
* [Tailwind CSS](https://tailwindcss.com)
|
|
69
59
|
|
|
70
60
|
## Security contact information
|
|
71
61
|
|
|
@@ -91,23 +81,20 @@ Thanks to [Open Collective][opencollective contributors] and all our Open Collec
|
|
|
91
81
|
[Kaminari]: https://github.com/kaminari/kaminari
|
|
92
82
|
[Ransack]: https://github.com/activerecord-hackery/ransack
|
|
93
83
|
|
|
94
|
-
[rubygems_badge]:
|
|
84
|
+
[rubygems_badge]: https://img.shields.io/gem/v/activeadmin.svg
|
|
95
85
|
[rubygems]: https://rubygems.org/gems/activeadmin
|
|
96
86
|
[actions_badge]: https://github.com/activeadmin/activeadmin/workflows/ci/badge.svg
|
|
97
87
|
[actions]: https://github.com/activeadmin/activeadmin/actions
|
|
98
88
|
[coverage_badge]: https://codecov.io/gh/activeadmin/activeadmin/branch/master/graph/badge.svg?token=NAjeBdkQXW
|
|
99
89
|
[coverage]: https://codecov.io/gh/activeadmin/activeadmin
|
|
100
|
-
[inch_badge]: http://inch-ci.org/github/activeadmin/activeadmin.svg?branch=master
|
|
101
|
-
[inch]: http://inch-ci.org/github/activeadmin/activeadmin
|
|
102
90
|
[tidelift_badge]: https://tidelift.com/badges/github/activeadmin/activeadmin
|
|
103
91
|
[tidelift]: https://tidelift.com/subscription/pkg/rubygems-activeadmin?utm_source=rubygems-activeadmin&utm_medium=readme
|
|
104
92
|
[tidelift_enterprise]: https://tidelift.com/subscription/pkg/rubygems-activeadmin?utm_source=rubygems-activeadmin&utm_medium=referral&utm_campaign=enterprise
|
|
105
93
|
[tidelift_support]: https://tidelift.com/subscription/pkg/rubygems-activeadmin?utm_source=rubygems-activeadmin&utm_medium=referral&utm_campaign=github&utm_content=support
|
|
106
94
|
|
|
107
|
-
[docs]:
|
|
108
|
-
[demo]: http://demo.activeadmin.info/admin
|
|
95
|
+
[docs]: https://activeadmin.info/
|
|
109
96
|
[wiki]: https://github.com/activeadmin/activeadmin/wiki
|
|
110
|
-
[stackoverflow]:
|
|
97
|
+
[stackoverflow]: https://stackoverflow.com/questions/tagged/activeadmin
|
|
111
98
|
[contributing]: https://github.com/activeadmin/activeadmin/blob/master/CONTRIBUTING.md
|
|
112
99
|
[Liberapay]: https://liberapay.com/Active-Admin/donate
|
|
113
100
|
[Tidelift security contact]: https://tidelift.com/security
|