activeadmin 2.2.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of activeadmin might be problematic. Click here for more details.
- checksums.yaml +7 -0
- data/CHANGELOG.md +546 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/CONTRIBUTING.md +217 -0
- data/LICENSE +20 -0
- data/README.md +110 -0
- data/app/assets/images/active_admin/nested_menu_arrow.gif +0 -0
- data/app/assets/images/active_admin/nested_menu_arrow_dark.gif +0 -0
- data/app/assets/images/active_admin/orderable.png +0 -0
- data/app/assets/javascripts/active_admin/base.es6 +23 -0
- data/app/assets/javascripts/active_admin/ext/jquery-ui.es6 +7 -0
- data/app/assets/javascripts/active_admin/ext/jquery.es6 +9 -0
- data/app/assets/javascripts/active_admin/initializers/datepicker.es6 +16 -0
- data/app/assets/javascripts/active_admin/initializers/filters.es6 +45 -0
- data/app/assets/javascripts/active_admin/initializers/tabs.es6 +6 -0
- data/app/assets/javascripts/active_admin/lib/active_admin.es6 +41 -0
- data/app/assets/javascripts/active_admin/lib/batch_actions.es6 +55 -0
- data/app/assets/javascripts/active_admin/lib/checkbox-toggler.es6 +49 -0
- data/app/assets/javascripts/active_admin/lib/dropdown-menu.es6 +123 -0
- data/app/assets/javascripts/active_admin/lib/has_many.es6 +95 -0
- data/app/assets/javascripts/active_admin/lib/modal_dialog.es6 +61 -0
- data/app/assets/javascripts/active_admin/lib/per_page.es6 +47 -0
- data/app/assets/javascripts/active_admin/lib/table-checkbox-toggler.es6 +36 -0
- data/app/assets/stylesheets/active_admin/_base.scss +41 -0
- data/app/assets/stylesheets/active_admin/_forms.scss +326 -0
- data/app/assets/stylesheets/active_admin/_header.scss +156 -0
- data/app/assets/stylesheets/active_admin/_mixins.scss +1 -0
- data/app/assets/stylesheets/active_admin/_typography.scss +100 -0
- data/app/assets/stylesheets/active_admin/components/_batch_actions.scss +6 -0
- data/app/assets/stylesheets/active_admin/components/_blank_slates.scss +30 -0
- data/app/assets/stylesheets/active_admin/components/_breadcrumbs.scss +20 -0
- data/app/assets/stylesheets/active_admin/components/_buttons.scss +6 -0
- data/app/assets/stylesheets/active_admin/components/_columns.scss +3 -0
- data/app/assets/stylesheets/active_admin/components/_comments.scss +41 -0
- data/app/assets/stylesheets/active_admin/components/_date_picker.scss +149 -0
- data/app/assets/stylesheets/active_admin/components/_dropdown_menu.scss +152 -0
- data/app/assets/stylesheets/active_admin/components/_flash_messages.scss +37 -0
- data/app/assets/stylesheets/active_admin/components/_grid.scss +9 -0
- data/app/assets/stylesheets/active_admin/components/_index_list.scss +12 -0
- data/app/assets/stylesheets/active_admin/components/_links.scss +5 -0
- data/app/assets/stylesheets/active_admin/components/_modal_dialog.scss +34 -0
- data/app/assets/stylesheets/active_admin/components/_pagination.scss +55 -0
- data/app/assets/stylesheets/active_admin/components/_panels.scss +6 -0
- data/app/assets/stylesheets/active_admin/components/_scopes.scss +13 -0
- data/app/assets/stylesheets/active_admin/components/_status_tags.scss +12 -0
- data/app/assets/stylesheets/active_admin/components/_table_tools.scss +67 -0
- data/app/assets/stylesheets/active_admin/components/_tables.scss +113 -0
- data/app/assets/stylesheets/active_admin/components/_tabs.scss +65 -0
- data/app/assets/stylesheets/active_admin/components/_unsupported_browser.scss +16 -0
- data/app/assets/stylesheets/active_admin/mixins/_all.scss +8 -0
- data/app/assets/stylesheets/active_admin/mixins/_buttons.scss +65 -0
- data/app/assets/stylesheets/active_admin/mixins/_gradients.scss +28 -0
- data/app/assets/stylesheets/active_admin/mixins/_rounded.scss +22 -0
- data/app/assets/stylesheets/active_admin/mixins/_sections.scss +41 -0
- data/app/assets/stylesheets/active_admin/mixins/_shadows.scss +15 -0
- data/app/assets/stylesheets/active_admin/mixins/_typography.scss +3 -0
- data/app/assets/stylesheets/active_admin/mixins/_utilities.scss +17 -0
- data/app/assets/stylesheets/active_admin/mixins/_variables.scss +34 -0
- data/app/assets/stylesheets/active_admin/pages/_logged_out.scss +44 -0
- data/app/assets/stylesheets/active_admin/print.scss +287 -0
- data/app/assets/stylesheets/active_admin/structure/_footer.scss +14 -0
- data/app/assets/stylesheets/active_admin/structure/_main_structure.scss +29 -0
- data/app/assets/stylesheets/active_admin/structure/_title_bar.scss +41 -0
- data/app/views/active_admin/devise/confirmations/new.html.erb +15 -0
- data/app/views/active_admin/devise/mailer/reset_password_instructions.html.erb +8 -0
- data/app/views/active_admin/devise/mailer/unlock_instructions.html.erb +7 -0
- data/app/views/active_admin/devise/passwords/edit.html.erb +18 -0
- data/app/views/active_admin/devise/passwords/new.html.erb +15 -0
- data/app/views/active_admin/devise/registrations/new.html.erb +21 -0
- data/app/views/active_admin/devise/sessions/new.html.erb +20 -0
- data/app/views/active_admin/devise/shared/_error_messages.html.erb +15 -0
- data/app/views/active_admin/devise/shared/_links.erb +33 -0
- data/app/views/active_admin/devise/unlocks/new.html.erb +15 -0
- data/app/views/active_admin/page/index.html.arb +1 -0
- data/app/views/active_admin/resource/edit.html.arb +1 -0
- data/app/views/active_admin/resource/index.html.arb +1 -0
- data/app/views/active_admin/resource/new.html.arb +1 -0
- data/app/views/active_admin/resource/show.html.arb +1 -0
- data/app/views/kaminari/active_admin/_first_page.html.erb +11 -0
- data/app/views/kaminari/active_admin/_gap.html.erb +8 -0
- data/app/views/kaminari/active_admin/_last_page.html.erb +11 -0
- data/app/views/kaminari/active_admin/_next_page.html.erb +11 -0
- data/app/views/kaminari/active_admin/_page.html.erb +12 -0
- data/app/views/kaminari/active_admin/_paginator.html.erb +25 -0
- data/app/views/kaminari/active_admin/_prev_page.html.erb +11 -0
- data/app/views/layouts/active_admin.html.arb +1 -0
- data/app/views/layouts/active_admin_logged_out.html.erb +39 -0
- data/config/locales/ar.yml +135 -0
- data/config/locales/bg.yml +119 -0
- data/config/locales/bs.yml +121 -0
- data/config/locales/ca.yml +106 -0
- data/config/locales/cs.yml +109 -0
- data/config/locales/da.yml +137 -0
- data/config/locales/de-CH.yml +101 -0
- data/config/locales/de.yml +144 -0
- data/config/locales/el.yml +126 -0
- data/config/locales/en-CA.yml +139 -0
- data/config/locales/en-GB.yml +139 -0
- data/config/locales/en.yml +162 -0
- data/config/locales/eo.yml +145 -0
- data/config/locales/es-MX.yml +96 -0
- data/config/locales/es.yml +162 -0
- data/config/locales/fa.yml +119 -0
- data/config/locales/fi.yml +112 -0
- data/config/locales/fr.yml +141 -0
- data/config/locales/he.yml +141 -0
- data/config/locales/hr.yml +123 -0
- data/config/locales/hu.yml +102 -0
- data/config/locales/id.yml +135 -0
- data/config/locales/it.yml +144 -0
- data/config/locales/ja.yml +141 -0
- data/config/locales/ko.yml +120 -0
- data/config/locales/lt.yml +142 -0
- data/config/locales/lv.yml +92 -0
- data/config/locales/mk.yml +134 -0
- data/config/locales/nb.yml +130 -0
- data/config/locales/nl.yml +144 -0
- data/config/locales/pl.yml +168 -0
- data/config/locales/pt-BR.yml +143 -0
- data/config/locales/pt-PT.yml +92 -0
- data/config/locales/ro.yml +96 -0
- data/config/locales/ru.yml +141 -0
- data/config/locales/sk.yml +109 -0
- data/config/locales/sv-SE.yml +135 -0
- data/config/locales/tr.yml +144 -0
- data/config/locales/uk.yml +138 -0
- data/config/locales/vi.yml +134 -0
- data/config/locales/zh-CN.yml +143 -0
- data/config/locales/zh-TW.yml +135 -0
- data/docs/.gitignore +1 -0
- data/docs/0-installation.md +118 -0
- data/docs/1-general-configuration.md +204 -0
- data/docs/10-custom-pages.md +150 -0
- data/docs/11-decorators.md +59 -0
- data/docs/12-arbre-components.md +214 -0
- data/docs/13-authorization-adapter.md +285 -0
- data/docs/14-gotchas.md +138 -0
- data/docs/2-resource-customization.md +466 -0
- data/docs/3-index-pages.md +328 -0
- data/docs/3-index-pages/custom-index.md +35 -0
- data/docs/3-index-pages/index-as-block.md +19 -0
- data/docs/3-index-pages/index-as-blog.md +69 -0
- data/docs/3-index-pages/index-as-grid.md +27 -0
- data/docs/3-index-pages/index-as-table.md +227 -0
- data/docs/4-csv-format.md +74 -0
- data/docs/5-forms.md +232 -0
- data/docs/6-show-pages.md +81 -0
- data/docs/7-sidebars.md +75 -0
- data/docs/8-custom-actions.md +177 -0
- data/docs/9-batch-actions.md +237 -0
- data/docs/CNAME +1 -0
- data/docs/Gemfile +4 -0
- data/docs/Gemfile.lock +249 -0
- data/docs/README.md +24 -0
- data/docs/_config.yml +2 -0
- data/docs/_includes/footer.html +8 -0
- data/docs/_includes/google-analytics.html +16 -0
- data/docs/_includes/head.html +7 -0
- data/docs/_includes/toc.html +98 -0
- data/docs/_includes/top-menu.html +17 -0
- data/docs/_layouts/default.html +21 -0
- data/docs/documentation.md +60 -0
- data/docs/images/activeadmin.png +0 -0
- data/docs/images/code-header.png +0 -0
- data/docs/images/divider.png +0 -0
- data/docs/images/features.png +0 -0
- data/docs/images/tidelift.svg +14 -0
- data/docs/index.html +125 -0
- data/docs/stylesheets/main.css +1176 -0
- data/lib/active_admin.rb +134 -0
- data/lib/active_admin/abstract_view_factory.rb +47 -0
- data/lib/active_admin/application.rb +234 -0
- data/lib/active_admin/application_settings.rb +42 -0
- data/lib/active_admin/asset_registration.rb +29 -0
- data/lib/active_admin/authorization_adapter.rb +129 -0
- data/lib/active_admin/base_controller.rb +81 -0
- data/lib/active_admin/base_controller/authorization.rb +127 -0
- data/lib/active_admin/base_controller/menu.rb +34 -0
- data/lib/active_admin/batch_actions.rb +16 -0
- data/lib/active_admin/batch_actions/controller.rb +40 -0
- data/lib/active_admin/batch_actions/resource_extension.rb +155 -0
- data/lib/active_admin/batch_actions/views/batch_action_form.rb +38 -0
- data/lib/active_admin/batch_actions/views/batch_action_selector.rb +58 -0
- data/lib/active_admin/batch_actions/views/selection_cells.rb +38 -0
- data/lib/active_admin/callbacks.rb +88 -0
- data/lib/active_admin/cancan_adapter.rb +36 -0
- data/lib/active_admin/component.rb +5 -0
- data/lib/active_admin/controller_action.rb +13 -0
- data/lib/active_admin/csv_builder.rb +133 -0
- data/lib/active_admin/dependency.rb +100 -0
- data/lib/active_admin/deprecation.rb +10 -0
- data/lib/active_admin/devise.rb +80 -0
- data/lib/active_admin/dsl.rb +160 -0
- data/lib/active_admin/dynamic_setting.rb +38 -0
- data/lib/active_admin/dynamic_settings_node.rb +28 -0
- data/lib/active_admin/engine.rb +21 -0
- data/lib/active_admin/error.rb +64 -0
- data/lib/active_admin/filters.rb +11 -0
- data/lib/active_admin/filters/active.rb +29 -0
- data/lib/active_admin/filters/active_filter.rb +124 -0
- data/lib/active_admin/filters/active_sidebar.rb +54 -0
- data/lib/active_admin/filters/dsl.rb +21 -0
- data/lib/active_admin/filters/forms.rb +85 -0
- data/lib/active_admin/filters/formtastic_addons.rb +79 -0
- data/lib/active_admin/filters/resource_extension.rb +155 -0
- data/lib/active_admin/form_builder.rb +182 -0
- data/lib/active_admin/generators/boilerplate.rb +45 -0
- data/lib/active_admin/helpers/collection.rb +19 -0
- data/lib/active_admin/helpers/i18n.rb +7 -0
- data/lib/active_admin/helpers/optional_display.rb +38 -0
- data/lib/active_admin/helpers/routes/url_helpers.rb +15 -0
- data/lib/active_admin/helpers/scope_chain.rb +24 -0
- data/lib/active_admin/inputs.rb +21 -0
- data/lib/active_admin/inputs/datepicker_input.rb +27 -0
- data/lib/active_admin/inputs/filters/base.rb +44 -0
- data/lib/active_admin/inputs/filters/base/search_method_select.rb +75 -0
- data/lib/active_admin/inputs/filters/boolean_input.rb +24 -0
- data/lib/active_admin/inputs/filters/check_boxes_input.rb +50 -0
- data/lib/active_admin/inputs/filters/date_picker_input.rb +13 -0
- data/lib/active_admin/inputs/filters/date_range_input.rb +49 -0
- data/lib/active_admin/inputs/filters/numeric_input.rb +12 -0
- data/lib/active_admin/inputs/filters/select_input.rb +58 -0
- data/lib/active_admin/inputs/filters/string_input.rb +26 -0
- data/lib/active_admin/inputs/filters/text_input.rb +25 -0
- data/lib/active_admin/localizers.rb +11 -0
- data/lib/active_admin/localizers/resource_localizer.rb +35 -0
- data/lib/active_admin/menu.rb +102 -0
- data/lib/active_admin/menu_collection.rb +91 -0
- data/lib/active_admin/menu_item.rb +69 -0
- data/lib/active_admin/namespace.rb +266 -0
- data/lib/active_admin/namespace_settings.rb +110 -0
- data/lib/active_admin/order_clause.rb +48 -0
- data/lib/active_admin/orm/active_record.rb +5 -0
- data/lib/active_admin/orm/active_record/comments.rb +101 -0
- data/lib/active_admin/orm/active_record/comments/comment.rb +31 -0
- data/lib/active_admin/orm/active_record/comments/namespace_helper.rb +14 -0
- data/lib/active_admin/orm/active_record/comments/resource_helper.rb +17 -0
- data/lib/active_admin/orm/active_record/comments/show_page_helper.rb +23 -0
- data/lib/active_admin/orm/active_record/comments/views.rb +2 -0
- data/lib/active_admin/orm/active_record/comments/views/active_admin_comments.rb +100 -0
- data/lib/active_admin/orm/mongoid.rb +1 -0
- data/lib/active_admin/orm/mongoid/.gitkeep +0 -0
- data/lib/active_admin/page.rb +111 -0
- data/lib/active_admin/page_controller.rb +29 -0
- data/lib/active_admin/page_dsl.rb +32 -0
- data/lib/active_admin/page_presenter.rb +33 -0
- data/lib/active_admin/pundit_adapter.rb +81 -0
- data/lib/active_admin/resource.rb +207 -0
- data/lib/active_admin/resource/action_items.rb +120 -0
- data/lib/active_admin/resource/attributes.rb +47 -0
- data/lib/active_admin/resource/belongs_to.rb +50 -0
- data/lib/active_admin/resource/controllers.rb +19 -0
- data/lib/active_admin/resource/includes.rb +12 -0
- data/lib/active_admin/resource/menu.rb +67 -0
- data/lib/active_admin/resource/naming.rb +62 -0
- data/lib/active_admin/resource/ordering.rb +11 -0
- data/lib/active_admin/resource/page_presenters.rb +82 -0
- data/lib/active_admin/resource/pagination.rb +23 -0
- data/lib/active_admin/resource/routes.rb +139 -0
- data/lib/active_admin/resource/scope_to.rb +74 -0
- data/lib/active_admin/resource/scopes.rb +52 -0
- data/lib/active_admin/resource/sidebars.rb +28 -0
- data/lib/active_admin/resource_collection.rb +72 -0
- data/lib/active_admin/resource_controller.rb +64 -0
- data/lib/active_admin/resource_controller/action_builder.rb +31 -0
- data/lib/active_admin/resource_controller/data_access.rb +322 -0
- data/lib/active_admin/resource_controller/decorators.rb +102 -0
- data/lib/active_admin/resource_controller/resource_class_methods.rb +26 -0
- data/lib/active_admin/resource_controller/scoping.rb +31 -0
- data/lib/active_admin/resource_controller/sidebars.rb +18 -0
- data/lib/active_admin/resource_controller/streaming.rb +43 -0
- data/lib/active_admin/resource_dsl.rb +224 -0
- data/lib/active_admin/router.rb +114 -0
- data/lib/active_admin/scope.rb +64 -0
- data/lib/active_admin/settings_node.rb +19 -0
- data/lib/active_admin/sidebar_section.rb +39 -0
- data/lib/active_admin/version.rb +3 -0
- data/lib/active_admin/view_factory.rb +27 -0
- data/lib/active_admin/view_helpers.rb +20 -0
- data/lib/active_admin/view_helpers/active_admin_application_helper.rb +12 -0
- data/lib/active_admin/view_helpers/auto_link_helper.rb +45 -0
- data/lib/active_admin/view_helpers/breadcrumb_helper.rb +33 -0
- data/lib/active_admin/view_helpers/display_helper.rb +104 -0
- data/lib/active_admin/view_helpers/download_format_links_helper.rb +59 -0
- data/lib/active_admin/view_helpers/fields_for.rb +50 -0
- data/lib/active_admin/view_helpers/flash_helper.rb +14 -0
- data/lib/active_admin/view_helpers/form_helper.rb +20 -0
- data/lib/active_admin/view_helpers/method_or_proc_helper.rb +100 -0
- data/lib/active_admin/view_helpers/scope_name_helper.rb +16 -0
- data/lib/active_admin/view_helpers/sidebar_helper.rb +15 -0
- data/lib/active_admin/view_helpers/title_helper.rb +11 -0
- data/lib/active_admin/view_helpers/view_factory_helper.rb +11 -0
- data/lib/active_admin/views.rb +8 -0
- data/lib/active_admin/views/action_items.rb +17 -0
- data/lib/active_admin/views/components/active_admin_form.rb +155 -0
- data/lib/active_admin/views/components/attributes_table.rb +94 -0
- data/lib/active_admin/views/components/blank_slate.rb +17 -0
- data/lib/active_admin/views/components/columns.rb +161 -0
- data/lib/active_admin/views/components/dropdown_menu.rb +71 -0
- data/lib/active_admin/views/components/index_list.rb +69 -0
- data/lib/active_admin/views/components/menu.rb +32 -0
- data/lib/active_admin/views/components/menu_item.rb +58 -0
- data/lib/active_admin/views/components/paginated_collection.rb +159 -0
- data/lib/active_admin/views/components/panel.rb +38 -0
- data/lib/active_admin/views/components/scopes.rb +72 -0
- data/lib/active_admin/views/components/sidebar.rb +13 -0
- data/lib/active_admin/views/components/sidebar_section.rb +34 -0
- data/lib/active_admin/views/components/site_title.rb +54 -0
- data/lib/active_admin/views/components/status_tag.rb +75 -0
- data/lib/active_admin/views/components/table_for.rb +209 -0
- data/lib/active_admin/views/components/tabs.rb +40 -0
- data/lib/active_admin/views/components/unsupported_browser.rb +11 -0
- data/lib/active_admin/views/footer.rb +30 -0
- data/lib/active_admin/views/header.rb +19 -0
- data/lib/active_admin/views/index_as_block.rb +36 -0
- data/lib/active_admin/views/index_as_blog.rb +155 -0
- data/lib/active_admin/views/index_as_grid.rb +80 -0
- data/lib/active_admin/views/index_as_table.rb +392 -0
- data/lib/active_admin/views/pages/base.rb +126 -0
- data/lib/active_admin/views/pages/form.rb +64 -0
- data/lib/active_admin/views/pages/index.rb +163 -0
- data/lib/active_admin/views/pages/layout.rb +26 -0
- data/lib/active_admin/views/pages/page.rb +30 -0
- data/lib/active_admin/views/pages/show.rb +65 -0
- data/lib/active_admin/views/tabbed_navigation.rb +11 -0
- data/lib/active_admin/views/title_bar.rb +55 -0
- data/lib/activeadmin.rb +1 -0
- data/lib/generators/active_admin/assets/assets_generator.rb +14 -0
- data/lib/generators/active_admin/assets/templates/active_admin.js +1 -0
- data/lib/generators/active_admin/assets/templates/active_admin.scss +17 -0
- data/lib/generators/active_admin/devise/devise_generator.rb +68 -0
- data/lib/generators/active_admin/install/install_generator.rb +49 -0
- data/lib/generators/active_admin/install/templates/active_admin.rb.erb +315 -0
- data/lib/generators/active_admin/install/templates/admin_users.rb.erb +28 -0
- data/lib/generators/active_admin/install/templates/dashboard.rb +32 -0
- data/lib/generators/active_admin/install/templates/migrations/create_active_admin_comments.rb.erb +16 -0
- data/lib/generators/active_admin/page/USAGE +8 -0
- data/lib/generators/active_admin/page/page_generator.rb +12 -0
- data/lib/generators/active_admin/page/templates/page.rb +5 -0
- data/lib/generators/active_admin/resource/resource_generator.rb +20 -0
- data/lib/generators/active_admin/resource/templates/admin.rb.erb +44 -0
- data/lib/ransack_ext.rb +20 -0
- data/vendor/assets/javascripts/jquery-ui/data.js +41 -0
- data/vendor/assets/javascripts/jquery-ui/disable-selection.js +48 -0
- data/vendor/assets/javascripts/jquery-ui/escape-selector.js +23 -0
- data/vendor/assets/javascripts/jquery-ui/focusable.js +86 -0
- data/vendor/assets/javascripts/jquery-ui/form-reset-mixin.js +80 -0
- data/vendor/assets/javascripts/jquery-ui/form.js +22 -0
- data/vendor/assets/javascripts/jquery-ui/ie.js +17 -0
- data/vendor/assets/javascripts/jquery-ui/keycode.js +47 -0
- data/vendor/assets/javascripts/jquery-ui/labels.js +65 -0
- data/vendor/assets/javascripts/jquery-ui/plugin.js +46 -0
- data/vendor/assets/javascripts/jquery-ui/position.js +500 -0
- data/vendor/assets/javascripts/jquery-ui/safe-active-element.js +42 -0
- data/vendor/assets/javascripts/jquery-ui/safe-blur.js +23 -0
- data/vendor/assets/javascripts/jquery-ui/scroll-parent.js +47 -0
- data/vendor/assets/javascripts/jquery-ui/tabbable.js +38 -0
- data/vendor/assets/javascripts/jquery-ui/unique-id.js +51 -0
- data/vendor/assets/javascripts/jquery-ui/version.js +17 -0
- data/vendor/assets/javascripts/jquery-ui/widget.js +735 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/button.js +391 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/checkboxradio.js +291 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/controlgroup.js +300 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/datepicker.js +2123 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/dialog.js +954 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/draggable.js +1259 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/mouse.js +230 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/resizable.js +1207 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/sortable.js +1561 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/tabs.js +931 -0
- data/vendor/assets/stylesheets/active_admin/_normalize.scss +447 -0
- metadata +616 -0
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, sex characteristics, gender identity and expression,
|
9
|
+
level of experience, education, socio-economic status, nationality, personal
|
10
|
+
appearance, race, religion, or sexual identity and orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting one or more of the project maintainers. All complaints
|
59
|
+
will be reviewed and investigated and will result in a response that is deemed
|
60
|
+
necessary and appropriate to the circumstances. The project team is obligated to
|
61
|
+
maintain confidentiality with regard to the reporter of an incident. Further
|
62
|
+
details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available [here][source].
|
72
|
+
|
73
|
+
[homepage]: https://www.contributor-covenant.org
|
74
|
+
[source]: https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
|
data/CONTRIBUTING.md
ADDED
@@ -0,0 +1,217 @@
|
|
1
|
+
## Contributing
|
2
|
+
|
3
|
+
First off, thank you for considering contributing to Active Admin. It's people
|
4
|
+
like you that make Active Admin such a great tool.
|
5
|
+
|
6
|
+
### Where do I go from here?
|
7
|
+
|
8
|
+
If you've noticed a bug or have a question that doesn't belong on the
|
9
|
+
[mailing list][] or [Stack Overflow][], [search the issue tracker][] to see if
|
10
|
+
someone else in the community has already created a ticket. If not, go ahead and
|
11
|
+
[make one][new issue]!
|
12
|
+
|
13
|
+
### Fork & create a branch
|
14
|
+
|
15
|
+
If this is something you think you can fix, then [fork Active Admin][] and
|
16
|
+
create a branch with a descriptive name.
|
17
|
+
|
18
|
+
A good branch name would be (where issue #325 is the ticket you're working on):
|
19
|
+
|
20
|
+
```sh
|
21
|
+
git checkout -b 325-add-japanese-translations
|
22
|
+
```
|
23
|
+
|
24
|
+
### Get the test suite running
|
25
|
+
|
26
|
+
Make sure you're using a recent ruby and have the `bundler` gem installed, at
|
27
|
+
least version `1.14.3`.
|
28
|
+
|
29
|
+
You'll also need chrome and [chromedriver] installed in order to run cucumber
|
30
|
+
scenarios.
|
31
|
+
|
32
|
+
Now install the development dependencies:
|
33
|
+
|
34
|
+
```sh
|
35
|
+
bundle install
|
36
|
+
```
|
37
|
+
|
38
|
+
Now you should be able to run the entire suite using:
|
39
|
+
|
40
|
+
```sh
|
41
|
+
bin/rake
|
42
|
+
```
|
43
|
+
|
44
|
+
The test run will generate a sample Rails application in `tmp/rails` to run the
|
45
|
+
tests against.
|
46
|
+
|
47
|
+
If your tests are passing locally but they're failing on CircleCI, it's probably
|
48
|
+
because of some breaking change or problem with the latest version of some
|
49
|
+
dependency. You should be able to reproduce the issue locally by:
|
50
|
+
|
51
|
+
* Removing the `Gemfile.lock` file.
|
52
|
+
* Running `bundle install`.
|
53
|
+
* Re-running the tests again like you did previously.
|
54
|
+
|
55
|
+
This is not your fault though, so if this happens feel free to investigate, but
|
56
|
+
also feel free to ping maintainers about the issue you just found.
|
57
|
+
|
58
|
+
If you want to test against a Rails version different from the latest, make sure
|
59
|
+
you use the correct Gemfile, for example:
|
60
|
+
|
61
|
+
```sh
|
62
|
+
export BUNDLE_GEMFILE=gemfiles/rails_51.gemfile
|
63
|
+
```
|
64
|
+
|
65
|
+
### Did you find a bug?
|
66
|
+
|
67
|
+
* **Ensure the bug was not already reported** by [searching all issues][].
|
68
|
+
|
69
|
+
* If you're unable to find an open issue addressing the problem,
|
70
|
+
[open a new one][new issue]. Be sure to include a **title and clear
|
71
|
+
description**, as much relevant information as possible, and a **code sample**
|
72
|
+
or an **executable test case** demonstrating the expected behavior that is not
|
73
|
+
occurring.
|
74
|
+
|
75
|
+
* If possible, use the relevant bug report templates to create the issue.
|
76
|
+
Simply copy the content of the appropriate template into a .rb file, make the
|
77
|
+
necessary changes to demonstrate the issue, and **paste the content into the
|
78
|
+
issue description**:
|
79
|
+
* [**ActiveAdmin** master issues][master template]
|
80
|
+
|
81
|
+
### 5. Implement your fix or feature
|
82
|
+
|
83
|
+
At this point, you're ready to make your changes! Feel free to ask for help;
|
84
|
+
everyone is a beginner at first :smile_cat:
|
85
|
+
|
86
|
+
### 6. View your changes in a Rails application
|
87
|
+
|
88
|
+
Active Admin is meant to be used by humans, not cucumbers. So make sure to take
|
89
|
+
a look at your changes in a browser.
|
90
|
+
|
91
|
+
To boot up a test Rails app:
|
92
|
+
|
93
|
+
```sh
|
94
|
+
bin/rake local server
|
95
|
+
```
|
96
|
+
|
97
|
+
This will automatically create a Rails app if none already exists, and store it
|
98
|
+
in the `.test-rails-apps` folder.
|
99
|
+
|
100
|
+
You should now be able to open <http://localhost:3000/admin> in your browser.
|
101
|
+
You can log in using:
|
102
|
+
|
103
|
+
*User*: admin@example.com
|
104
|
+
*Password*: password
|
105
|
+
|
106
|
+
If you need to perform any other commands on the test application, just pass
|
107
|
+
them to the `local` rake task. For example, to boot the rails console:
|
108
|
+
|
109
|
+
```sh
|
110
|
+
bin/rake local console
|
111
|
+
```
|
112
|
+
|
113
|
+
Or to migrate the database, if you create a new migration or just play around
|
114
|
+
with the db:
|
115
|
+
|
116
|
+
```sh
|
117
|
+
bin/rake local db:migrate
|
118
|
+
```
|
119
|
+
|
120
|
+
### Get the style right
|
121
|
+
|
122
|
+
Your patch should follow the same conventions & pass the same code quality
|
123
|
+
checks as the rest of the project. `bin/rake lint` will give you feedback in
|
124
|
+
this regard. You can check & fix style issues by running each linter
|
125
|
+
individually. Run `bin/rake -T lint` to see the available linters.
|
126
|
+
|
127
|
+
### Make a Pull Request
|
128
|
+
|
129
|
+
At this point, you should switch back to your master branch and make sure it's
|
130
|
+
up to date with Active Admin's master branch:
|
131
|
+
|
132
|
+
```sh
|
133
|
+
git remote add upstream git@github.com:activeadmin/activeadmin.git
|
134
|
+
git checkout master
|
135
|
+
git pull upstream master
|
136
|
+
```
|
137
|
+
|
138
|
+
Then update your feature branch from your local copy of master, and push it!
|
139
|
+
|
140
|
+
```sh
|
141
|
+
git checkout 325-add-japanese-translations
|
142
|
+
git rebase master
|
143
|
+
git push --set-upstream origin 325-add-japanese-translations
|
144
|
+
```
|
145
|
+
|
146
|
+
Finally, go to GitHub and [make a Pull Request][] :D
|
147
|
+
|
148
|
+
CircleCI will run our test suite against all supported Rails versions. We care
|
149
|
+
about quality, so your PR won't be merged until all tests pass. It's unlikely,
|
150
|
+
but it's possible that your changes pass tests in one Rails version but fail in
|
151
|
+
another. In that case, you'll have to setup your development environment (as
|
152
|
+
explained in step 3) to use the problematic Rails version, and investigate
|
153
|
+
what's going on!
|
154
|
+
|
155
|
+
### Keeping your Pull Request updated
|
156
|
+
|
157
|
+
If a maintainer asks you to "rebase" your PR, they're saying that a lot of code
|
158
|
+
has changed, and that you need to update your branch so it's easier to merge.
|
159
|
+
|
160
|
+
To learn more about rebasing in Git, there are a lot of [good][git rebasing]
|
161
|
+
[resources][interactive rebase] but here's the suggested workflow:
|
162
|
+
|
163
|
+
```sh
|
164
|
+
git checkout 325-add-japanese-translations
|
165
|
+
git pull --rebase upstream master
|
166
|
+
git push --force-with-lease 325-add-japanese-translations
|
167
|
+
```
|
168
|
+
|
169
|
+
### Merging a PR (maintainers only)
|
170
|
+
|
171
|
+
A PR can only be merged into master by a maintainer if:
|
172
|
+
|
173
|
+
* It is passing CI.
|
174
|
+
* It has been approved by at least two maintainers. If it was a maintainer who
|
175
|
+
opened the PR, only one extra approval is needed.
|
176
|
+
* It has no requested changes.
|
177
|
+
* It is up to date with current master.
|
178
|
+
|
179
|
+
Any maintainer is allowed to merge a PR if all of these conditions are
|
180
|
+
met.
|
181
|
+
|
182
|
+
### Shipping a release (maintainers only)
|
183
|
+
|
184
|
+
Maintainers need to do the following to push out a release:
|
185
|
+
|
186
|
+
* Make sure all pull requests are in and that changelog is current
|
187
|
+
* Update `version.rb` file and changelog with new version number
|
188
|
+
* If it's not a patch level release, create a stable branch for that release,
|
189
|
+
otherwise switch to the stable branch corresponding to the patch release you
|
190
|
+
want to ship:
|
191
|
+
|
192
|
+
```sh
|
193
|
+
git checkout master
|
194
|
+
git fetch activeadmin
|
195
|
+
git rebase activeadmin/master
|
196
|
+
# If the release is 2.1.x then this should be: 2-1-stable
|
197
|
+
git checkout -b N-N-stable
|
198
|
+
git push activeadmin N-N-stable:N-N-stable
|
199
|
+
```
|
200
|
+
|
201
|
+
* Make sure you have [chandler] properly configured. Chandler is used to
|
202
|
+
automatically submit github release notes from the changelog right after
|
203
|
+
pushing the gem to rubygems.
|
204
|
+
* `bin/rake release`
|
205
|
+
|
206
|
+
[chandler]: https://github.com/mattbrictson/chandler#2-configure-credentials
|
207
|
+
[chromedriver]: https://sites.google.com/a/chromium.org/chromedriver/getting-started
|
208
|
+
[mailing list]: http://groups.google.com/group/activeadmin
|
209
|
+
[Stack Overflow]: http://stackoverflow.com/questions/tagged/activeadmin
|
210
|
+
[search the issue tracker]: https://github.com/activeadmin/activeadmin/issues?q=something
|
211
|
+
[new issue]: https://github.com/activeadmin/activeadmin/issues/new
|
212
|
+
[fork Active Admin]: https://help.github.com/articles/fork-a-repo
|
213
|
+
[searching all issues]: https://github.com/activeadmin/activeadmin/issues?q=
|
214
|
+
[master template]: https://github.com/activeadmin/activeadmin/blob/master/tasks/bug_report_template.rb
|
215
|
+
[make a pull request]: https://help.github.com/articles/creating-a-pull-request
|
216
|
+
[git rebasing]: http://git-scm.com/book/en/Git-Branching-Rebasing
|
217
|
+
[interactive rebase]: https://help.github.com/articles/interactive-rebase
|
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) Greg Bell, VersaPay Corporation
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,110 @@
|
|
1
|
+
# Active Admin
|
2
|
+
|
3
|
+
[Active Admin](https://activeadmin.info) is a Ruby on Rails framework for
|
4
|
+
creating elegant backends for website administration.
|
5
|
+
|
6
|
+
[![Version ][rubygems_badge]][rubygems]
|
7
|
+
[![Circle CI ][circle_badge]][circle]
|
8
|
+
[![Coverage ][coverage_badge]][coverage]
|
9
|
+
[![Tidelift ][tidelift_badge]][tidelift]
|
10
|
+
[![Inch CI ][inch_badge]][inch]
|
11
|
+
|
12
|
+
## Goals
|
13
|
+
|
14
|
+
* Enable developers to quickly create good-looking administration interfaces.
|
15
|
+
* Build a DSL for developers and an interface for businesses.
|
16
|
+
* Ensure that developers can easily customize every nook and cranny.
|
17
|
+
|
18
|
+
## Getting started
|
19
|
+
|
20
|
+
* Check out [the docs][docs].
|
21
|
+
* Try the [live demo][demo].
|
22
|
+
* The [wiki] includes links to tutorials, articles and sample projects.
|
23
|
+
|
24
|
+
## Need help?
|
25
|
+
|
26
|
+
Please use [StackOverflow][stackoverflow] for help requests and how-to questions.
|
27
|
+
|
28
|
+
Please open GitHub issues for bugs and enhancements only, not general help requests.
|
29
|
+
Please search previous issues (and Google and StackOverflow) before creating a new issue.
|
30
|
+
|
31
|
+
Google Groups, IRC #activeadmin and Gitter are not actively monitored.
|
32
|
+
|
33
|
+
## Want to contribute?
|
34
|
+
|
35
|
+
If you want to contribute through code or documentation, the [Contributing
|
36
|
+
guide is the best place to start][contributing]. If you have questions, feel free
|
37
|
+
to ask.
|
38
|
+
|
39
|
+
## Want to support us?
|
40
|
+
|
41
|
+
If you want to support us financially, you can [help fund the project
|
42
|
+
through a Tidelift subscription][tidelift]. By buying a Tidelift subscription
|
43
|
+
you make sure your whole dependency stack is properly maintained, while also
|
44
|
+
getting a comprehensive view of outdated dependencies, new releases, security
|
45
|
+
alerts, and licensing compatibility issues.
|
46
|
+
|
47
|
+
You can also support us with a weekly tip via [Liberapay].
|
48
|
+
|
49
|
+
Finally, we have an [Open Collective][opencollective page] where you can become a backer or
|
50
|
+
sponsor for the project, and also submit expenses to it.
|
51
|
+
|
52
|
+
## Dependencies
|
53
|
+
|
54
|
+
We try not to reinvent the wheel, so Active Admin is built with other open source projects:
|
55
|
+
|
56
|
+
Tool | Description
|
57
|
+
--------------------- | -----------
|
58
|
+
[Arbre] | Ruby -> HTML, just like that.
|
59
|
+
[Devise] | Powerful, extensible user authentication
|
60
|
+
[Formtastic] | A Rails form builder plugin with semantically rich and accessible markup
|
61
|
+
[Inherited Resources] | Simplifies controllers with pre-built RESTful controller actions
|
62
|
+
[Kaminari] | Elegant pagination for any sort of collection
|
63
|
+
[Ransack] | Provides a simple search API to query your data
|
64
|
+
|
65
|
+
## Security contact information
|
66
|
+
|
67
|
+
Please use the Tidelift security contact to [report a security vulnerability][Tidelift security contact].
|
68
|
+
Tidelift will coordinate the fix and disclosure.
|
69
|
+
|
70
|
+
## Acknowledgements
|
71
|
+
|
72
|
+
Thanks to [Greg Bell][Greg] for creating and sharing this project with the open source community.
|
73
|
+
|
74
|
+
Thanks to [all the people that ever contributed through code][contributors] or
|
75
|
+
other means such as bug reports, issue triaging, feature suggestions, code
|
76
|
+
snippet tips, Slack discussions and so on.
|
77
|
+
|
78
|
+
Thanks to [Tidelift][tidelift] and all our Tidelift subscribers.
|
79
|
+
|
80
|
+
Thanks to [Open Collective][opencollective contributors] and all our Open Collective contributors.
|
81
|
+
|
82
|
+
[Arbre]: https://github.com/activeadmin/arbre
|
83
|
+
[Devise]: https://github.com/plataformatec/devise
|
84
|
+
[Formtastic]: https://github.com/justinfrench/formtastic
|
85
|
+
[Inherited Resources]: https://github.com/activeadmin/inherited_resources
|
86
|
+
[Kaminari]: https://github.com/kaminari/kaminari
|
87
|
+
[Ransack]: https://github.com/activerecord-hackery/ransack
|
88
|
+
|
89
|
+
[rubygems_badge]: http://img.shields.io/gem/v/activeadmin.svg
|
90
|
+
[rubygems]: https://rubygems.org/gems/activeadmin
|
91
|
+
[circle_badge]: https://circleci.com/gh/activeadmin/activeadmin/tree/master.svg
|
92
|
+
[circle]: https://circleci.com/gh/activeadmin/activeadmin/tree/master
|
93
|
+
[coverage_badge]: https://api.codeclimate.com/v1/badges/779e407d22bacff19733/test_coverage
|
94
|
+
[coverage]: https://codeclimate.com/github/activeadmin/activeadmin/test_coverage
|
95
|
+
[inch_badge]: http://inch-ci.org/github/activeadmin/activeadmin.svg?branch=master
|
96
|
+
[inch]: http://inch-ci.org/github/activeadmin/activeadmin
|
97
|
+
[tidelift_badge]: https://tidelift.com/badges/github/activeadmin/activeadmin
|
98
|
+
[tidelift]: https://tidelift.com/subscription/pkg/rubygems-activeadmin?utm_source=rubygems-activeadmin&utm_medium=readme
|
99
|
+
|
100
|
+
[docs]: http://activeadmin.info/0-installation.html
|
101
|
+
[demo]: http://demo.activeadmin.info/admin
|
102
|
+
[wiki]: https://github.com/activeadmin/activeadmin/wiki
|
103
|
+
[stackoverflow]: http://stackoverflow.com/questions/tagged/activeadmin
|
104
|
+
[contributing]: https://github.com/activeadmin/activeadmin/blob/master/CONTRIBUTING.md
|
105
|
+
[Liberapay]: https://liberapay.com/Active-Admin/donate
|
106
|
+
[Tidelift security contact]: https://tidelift.com/security
|
107
|
+
[Greg]: https://github.com/gregbell
|
108
|
+
[contributors]: https://github.com/activeadmin/activeadmin/graphs/contributors
|
109
|
+
[opencollective page]: https://opencollective.com/activeadmin
|
110
|
+
[opencollective contributors]: https://opencollective.com/activeadmin#contributors
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,23 @@
|
|
1
|
+
//= require jquery3
|
2
|
+
//= require jquery-ui/widgets/datepicker
|
3
|
+
//= require jquery-ui/widgets/dialog
|
4
|
+
//= require jquery-ui/widgets/sortable
|
5
|
+
//= require jquery-ui/widgets/tabs
|
6
|
+
//= require jquery-ui/widget
|
7
|
+
//= require jquery_ujs
|
8
|
+
//= require_self
|
9
|
+
//= require ./ext/jquery
|
10
|
+
//= require ./ext/jquery-ui
|
11
|
+
//= require ./lib/active_admin
|
12
|
+
//= require ./lib/batch_actions
|
13
|
+
//= require ./lib/dropdown-menu
|
14
|
+
//= require ./lib/has_many
|
15
|
+
//= require ./lib/modal_dialog
|
16
|
+
//= require ./lib/per_page
|
17
|
+
//= require ./lib/checkbox-toggler
|
18
|
+
//= require ./lib/table-checkbox-toggler
|
19
|
+
//= require ./initializers/datepicker
|
20
|
+
//= require ./initializers/filters
|
21
|
+
//= require ./initializers/tabs
|
22
|
+
|
23
|
+
window.ActiveAdmin = {}
|