activeadmin 2.6.1 → 2.13.1
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 +4 -4
- data/CHANGELOG.md +291 -9
- data/CONTRIBUTING.md +9 -25
- data/README.md +4 -4
- data/app/assets/javascripts/active_admin/base.js +27 -22
- data/app/assets/stylesheets/active_admin/_base.scss +53 -37
- data/app/assets/stylesheets/active_admin/_forms.scss +0 -10
- data/app/assets/stylesheets/active_admin/_header.scss +37 -3
- data/app/assets/stylesheets/active_admin/_normalize.scss +25 -123
- data/app/assets/stylesheets/active_admin/{print.scss → _print.scss} +0 -0
- data/app/assets/stylesheets/active_admin/components/_comments.scss +2 -2
- data/app/assets/stylesheets/active_admin/components/_date_picker.scss +1 -2
- data/app/assets/stylesheets/active_admin/components/_dropdown_menu.scss +0 -1
- data/app/assets/stylesheets/active_admin/mixins/_variables.scss +12 -0
- data/app/assets/stylesheets/active_admin/structure/_title_bar.scss +0 -1
- data/app/javascript/active_admin/initializers/has-many.js +4 -1
- data/app/javascript/active_admin/initializers/per-page.js +1 -1
- data/app/javascript/active_admin/lib/checkbox-toggler.js +3 -3
- data/app/javascript/active_admin/lib/dropdown-menu.js +1 -1
- data/app/javascript/active_admin/lib/modal-dialog.js +7 -7
- data/app/javascript/active_admin/lib/per-page.js +1 -1
- data/app/javascript/active_admin/lib/table-checkbox-toggler.js +1 -1
- data/app/views/active_admin/devise/mailer/reset_password_instructions.html.erb +1 -1
- data/app/views/active_admin/devise/mailer/unlock_instructions.html.erb +2 -2
- data/app/views/active_admin/devise/shared/_links.erb +1 -1
- 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/layouts/active_admin.html.arb +1 -0
- data/app/views/layouts/active_admin_logged_out.html.erb +15 -5
- data/config/locales/ar.yml +6 -6
- data/config/locales/es-MX.yml +2 -1
- data/config/locales/es.yml +2 -2
- data/config/locales/it.yml +18 -0
- data/config/locales/ja.yml +3 -3
- data/config/locales/ko.yml +1 -1
- data/config/locales/nl.yml +1 -1
- data/config/locales/ro.yml +3 -2
- data/config/locales/vi.yml +5 -5
- data/docs/0-installation.md +27 -3
- data/docs/11-decorators.md +16 -5
- data/docs/2-resource-customization.md +10 -1
- data/docs/5-forms.md +9 -3
- data/docs/6-show-pages.md +12 -0
- data/docs/8-custom-actions.md +1 -1
- data/docs/Gemfile +3 -2
- data/docs/Gemfile.lock +138 -103
- data/docs/_includes/top-menu.html +1 -1
- data/docs/documentation.md +1 -1
- data/docs/index.html +6 -6
- data/lib/active_admin/abstract_view_factory.rb +1 -0
- data/lib/active_admin/application.rb +19 -19
- data/lib/active_admin/application_settings.rb +4 -3
- data/lib/active_admin/asset_registration.rb +1 -0
- data/lib/active_admin/authorization_adapter.rb +4 -3
- data/lib/active_admin/base_controller/authorization.rb +15 -13
- data/lib/active_admin/base_controller/menu.rb +1 -0
- data/lib/active_admin/base_controller.rb +6 -5
- data/lib/active_admin/batch_actions/controller.rb +4 -3
- data/lib/active_admin/batch_actions/resource_extension.rb +10 -8
- data/lib/active_admin/batch_actions/views/batch_action_form.rb +4 -3
- data/lib/active_admin/batch_actions/views/batch_action_selector.rb +7 -6
- data/lib/active_admin/batch_actions/views/selection_cells.rb +4 -3
- data/lib/active_admin/batch_actions.rb +1 -0
- data/lib/active_admin/callbacks.rb +1 -0
- data/lib/active_admin/cancan_adapter.rb +2 -1
- data/lib/active_admin/collection_decorator.rb +32 -0
- data/lib/active_admin/component.rb +1 -0
- data/lib/active_admin/controller_action.rb +1 -0
- data/lib/active_admin/csv_builder.rb +6 -19
- data/lib/active_admin/dependency.rb +13 -12
- data/lib/active_admin/deprecation.rb +1 -0
- data/lib/active_admin/devise.rb +16 -5
- data/lib/active_admin/dsl.rb +2 -1
- data/lib/active_admin/dynamic_setting.rb +1 -0
- data/lib/active_admin/dynamic_settings_node.rb +3 -2
- data/lib/active_admin/engine.rb +13 -9
- data/lib/active_admin/error.rb +1 -2
- data/lib/active_admin/filters/active.rb +2 -1
- data/lib/active_admin/filters/active_filter.rb +6 -6
- data/lib/active_admin/filters/active_sidebar.rb +4 -30
- data/lib/active_admin/filters/dsl.rb +1 -0
- data/lib/active_admin/filters/forms.rb +7 -6
- data/lib/active_admin/filters/formtastic_addons.rb +2 -6
- data/lib/active_admin/filters/resource_extension.rb +2 -1
- data/lib/active_admin/filters.rb +8 -7
- data/lib/active_admin/form_builder.rb +25 -20
- data/lib/active_admin/generators/boilerplate.rb +2 -1
- data/lib/active_admin/helpers/collection.rb +2 -0
- data/lib/active_admin/helpers/i18n.rb +1 -0
- data/lib/active_admin/helpers/optional_display.rb +3 -2
- data/lib/active_admin/helpers/routes/url_helpers.rb +1 -0
- data/lib/active_admin/helpers/scope_chain.rb +1 -0
- data/lib/active_admin/inputs/datepicker_input.rb +2 -1
- data/lib/active_admin/inputs/filters/base/search_method_select.rb +5 -4
- data/lib/active_admin/inputs/filters/base.rb +2 -1
- data/lib/active_admin/inputs/filters/boolean_input.rb +2 -1
- data/lib/active_admin/inputs/filters/check_boxes_input.rb +2 -1
- data/lib/active_admin/inputs/filters/date_picker_input.rb +1 -0
- data/lib/active_admin/inputs/filters/date_range_input.rb +1 -0
- data/lib/active_admin/inputs/filters/numeric_input.rb +1 -0
- data/lib/active_admin/inputs/filters/select_input.rb +3 -2
- data/lib/active_admin/inputs/filters/string_input.rb +1 -0
- data/lib/active_admin/inputs/filters/text_input.rb +1 -0
- data/lib/active_admin/inputs.rb +1 -0
- data/lib/active_admin/localizers/resource_localizer.rb +4 -3
- data/lib/active_admin/localizers.rb +2 -1
- data/lib/active_admin/menu.rb +7 -3
- data/lib/active_admin/menu_collection.rb +1 -0
- data/lib/active_admin/menu_item.rb +8 -7
- data/lib/active_admin/namespace.rb +15 -14
- data/lib/active_admin/namespace_settings.rb +9 -5
- data/lib/active_admin/order_clause.rb +2 -1
- data/lib/active_admin/orm/active_record/comments/comment.rb +4 -3
- data/lib/active_admin/orm/active_record/comments/namespace_helper.rb +1 -0
- data/lib/active_admin/orm/active_record/comments/resource_helper.rb +1 -0
- data/lib/active_admin/orm/active_record/comments/show_page_helper.rb +1 -0
- data/lib/active_admin/orm/active_record/comments/views/active_admin_comments.rb +20 -19
- data/lib/active_admin/orm/active_record/comments/views.rb +3 -2
- data/lib/active_admin/orm/active_record/comments.rb +20 -19
- data/lib/active_admin/orm/active_record.rb +2 -1
- data/lib/active_admin/orm/mongoid.rb +1 -0
- data/lib/active_admin/page.rb +2 -1
- data/lib/active_admin/page_controller.rb +1 -0
- data/lib/active_admin/page_dsl.rb +1 -0
- data/lib/active_admin/page_presenter.rb +1 -0
- data/lib/active_admin/pundit_adapter.rb +59 -15
- data/lib/active_admin/resource/action_items.rb +6 -5
- data/lib/active_admin/resource/attributes.rb +2 -1
- data/lib/active_admin/resource/belongs_to.rb +3 -2
- data/lib/active_admin/resource/controllers.rb +2 -1
- data/lib/active_admin/resource/includes.rb +1 -0
- data/lib/active_admin/resource/menu.rb +5 -4
- data/lib/active_admin/resource/model.rb +1 -0
- data/lib/active_admin/resource/naming.rb +5 -4
- data/lib/active_admin/resource/ordering.rb +1 -0
- data/lib/active_admin/resource/page_presenters.rb +1 -0
- data/lib/active_admin/resource/pagination.rb +1 -0
- data/lib/active_admin/resource/routes.rb +6 -7
- data/lib/active_admin/resource/scope_to.rb +8 -7
- data/lib/active_admin/resource/scopes.rb +1 -0
- data/lib/active_admin/resource/sidebars.rb +2 -1
- data/lib/active_admin/resource.rb +20 -19
- data/lib/active_admin/resource_collection.rb +1 -0
- data/lib/active_admin/resource_controller/action_builder.rb +1 -0
- data/lib/active_admin/resource_controller/data_access.rb +31 -5
- data/lib/active_admin/resource_controller/decorators.rb +7 -28
- data/lib/active_admin/resource_controller/polymorphic_routes.rb +1 -0
- data/lib/active_admin/resource_controller/resource_class_methods.rb +1 -0
- data/lib/active_admin/resource_controller/scoping.rb +1 -0
- data/lib/active_admin/resource_controller/sidebars.rb +1 -0
- data/lib/active_admin/resource_controller/streaming.rb +9 -7
- data/lib/active_admin/resource_controller.rb +13 -11
- data/lib/active_admin/resource_dsl.rb +11 -25
- data/lib/active_admin/router.rb +1 -0
- data/lib/active_admin/scope.rb +7 -6
- data/lib/active_admin/settings_node.rb +1 -0
- data/lib/active_admin/sidebar_section.rb +1 -0
- data/lib/active_admin/version.rb +2 -1
- data/lib/active_admin/view_factory.rb +18 -17
- data/lib/active_admin/view_helpers/active_admin_application_helper.rb +1 -0
- data/lib/active_admin/view_helpers/auto_link_helper.rb +1 -0
- data/lib/active_admin/view_helpers/breadcrumb_helper.rb +4 -3
- data/lib/active_admin/view_helpers/display_helper.rb +15 -7
- data/lib/active_admin/view_helpers/download_format_links_helper.rb +2 -1
- data/lib/active_admin/view_helpers/fields_for.rb +3 -2
- data/lib/active_admin/view_helpers/flash_helper.rb +1 -0
- data/lib/active_admin/view_helpers/form_helper.rb +1 -0
- data/lib/active_admin/view_helpers/method_or_proc_helper.rb +1 -0
- data/lib/active_admin/view_helpers/scope_name_helper.rb +1 -0
- data/lib/active_admin/view_helpers/sidebar_helper.rb +1 -0
- data/lib/active_admin/view_helpers/title_helper.rb +1 -0
- data/lib/active_admin/view_helpers/view_factory_helper.rb +1 -0
- data/lib/active_admin/view_helpers.rb +2 -1
- data/lib/active_admin/views/action_items.rb +1 -0
- data/lib/active_admin/views/components/active_admin_form.rb +7 -6
- data/lib/active_admin/views/components/active_filters_sidebar_content.rb +59 -0
- data/lib/active_admin/views/components/attributes_table.rb +6 -5
- data/lib/active_admin/views/components/blank_slate.rb +2 -1
- data/lib/active_admin/views/components/columns.rb +1 -0
- data/lib/active_admin/views/components/dropdown_menu.rb +7 -9
- data/lib/active_admin/views/components/index_list.rb +4 -3
- data/lib/active_admin/views/components/menu.rb +2 -1
- data/lib/active_admin/views/components/menu_item.rb +5 -4
- data/lib/active_admin/views/components/paginated_collection.rb +19 -18
- data/lib/active_admin/views/components/panel.rb +2 -1
- data/lib/active_admin/views/components/scopes.rb +8 -5
- data/lib/active_admin/views/components/sidebar.rb +1 -0
- data/lib/active_admin/views/components/sidebar_section.rb +1 -0
- data/lib/active_admin/views/components/site_title.rb +2 -1
- data/lib/active_admin/views/components/status_tag.rb +12 -11
- data/lib/active_admin/views/components/table_for.rb +18 -17
- data/lib/active_admin/views/components/tabs.rb +4 -3
- data/lib/active_admin/views/components/unsupported_browser.rb +1 -0
- data/lib/active_admin/views/footer.rb +3 -1
- data/lib/active_admin/views/header.rb +3 -2
- data/lib/active_admin/views/index_as_block.rb +1 -0
- data/lib/active_admin/views/index_as_blog.rb +2 -1
- data/lib/active_admin/views/index_as_grid.rb +2 -1
- data/lib/active_admin/views/index_as_table.rb +17 -16
- data/lib/active_admin/views/pages/base.rb +14 -9
- data/lib/active_admin/views/pages/form.rb +1 -0
- data/lib/active_admin/views/pages/index.rb +15 -13
- data/lib/active_admin/views/pages/layout.rb +1 -0
- data/lib/active_admin/views/pages/page.rb +1 -0
- data/lib/active_admin/views/pages/show.rb +1 -0
- data/lib/active_admin/views/tabbed_navigation.rb +3 -2
- data/lib/active_admin/views/title_bar.rb +2 -1
- data/lib/active_admin/views.rb +2 -1
- data/lib/active_admin.rb +61 -61
- data/lib/activeadmin.rb +2 -1
- data/lib/generators/active_admin/assets/assets_generator.rb +3 -2
- data/lib/generators/active_admin/assets/templates/active_admin.scss +2 -2
- data/lib/generators/active_admin/devise/devise_generator.rb +6 -5
- data/lib/generators/active_admin/install/install_generator.rb +15 -8
- data/lib/generators/active_admin/install/templates/active_admin.rb.erb +9 -2
- data/lib/generators/active_admin/install/templates/dashboard.rb +1 -0
- data/lib/generators/active_admin/page/page_generator.rb +2 -1
- data/lib/generators/active_admin/page/templates/page.rb +1 -0
- data/lib/generators/active_admin/resource/resource_generator.rb +4 -3
- data/lib/generators/active_admin/webpacker/plugins/jquery.js +7 -0
- data/lib/generators/active_admin/webpacker/templates/active_admin.js +5 -0
- data/lib/generators/active_admin/webpacker/templates/active_admin.scss +17 -0
- data/lib/generators/active_admin/webpacker/templates/print.scss +2 -0
- data/lib/generators/active_admin/webpacker/webpacker_generator.rb +27 -0
- data/lib/ransack_ext.rb +9 -8
- metadata +32 -53
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0b3beb756b607b196f72d4ec4a4b173867021bb2eba03d183797165810a526b5
|
4
|
+
data.tar.gz: bed4421fc6a28f2ff0bee9659a76bfd680b9432c74d290753c62392c3a7048d3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 11cce1d23fb4519f394ef13930716fabe39e6d7654f5c4424c887fe54e6d56225700155ae59187ad42a6551d9bcf17f95652c08d234ddafb5ba2d4fb5e444a09
|
7
|
+
data.tar.gz: 452592e57f8fe9f16e683a2f54b9dc7fdd717d1ec2db909710a07cfb74dda5d8f7a0efda515b439555470381da020e75b2d4dfe328a8b52bc436b2f94371525b
|
data/CHANGELOG.md
CHANGED
@@ -2,7 +2,189 @@
|
|
2
2
|
|
3
3
|
## Unreleased
|
4
4
|
|
5
|
-
## 2.
|
5
|
+
## 2.13.1 [☰](https://github.com/activeadmin/activeadmin/compare/v2.13.0..v2.13.1)
|
6
|
+
|
7
|
+
### Bug Fixes
|
8
|
+
|
9
|
+
* Honor load paths order when loading admin files. [#7488] by [@tf]
|
10
|
+
* Fix passing expected hash payload argument. [#7487] by [@ispyropoulos]
|
11
|
+
|
12
|
+
## 2.13.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.12.0..v2.13.0)
|
13
|
+
|
14
|
+
### Documentation
|
15
|
+
|
16
|
+
* Update validation errors documentation to account for deprecated `ActiveModel::Errors#keys`. [#7475] by [@amit]
|
17
|
+
|
18
|
+
### Dependency Changes
|
19
|
+
|
20
|
+
* Drop rails 6.0 support. [#7476] by [@deivid-rodriguez]
|
21
|
+
|
22
|
+
### Performance
|
23
|
+
|
24
|
+
* Fix pundit performance. [#7479] by [@deivid-rodriguez]
|
25
|
+
|
26
|
+
## 2.12.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.11.2..v2.12.0)
|
27
|
+
|
28
|
+
### Enhancements
|
29
|
+
|
30
|
+
* Add Ransack 3 compatibility. [#7453] by [@tagliala]
|
31
|
+
|
32
|
+
### Bug Fixes
|
33
|
+
|
34
|
+
* Fix pundit namespace detection. [#7144] by [@vlad-psh]
|
35
|
+
|
36
|
+
### Documentation
|
37
|
+
|
38
|
+
* Don't mention webpacker as the default asset generator in Rails. [#7377] by [@jaynetics]
|
39
|
+
|
40
|
+
### Performance
|
41
|
+
|
42
|
+
* Avoid duplicate work when downloading CSV. [#7336] by [@deivid-rodriguez]
|
43
|
+
|
44
|
+
## 2.11.2 [☰](https://github.com/activeadmin/activeadmin/compare/v2.11.1..v2.11.2)
|
45
|
+
|
46
|
+
### Bug Fixes
|
47
|
+
|
48
|
+
* Fix disappearing BOM option for `CSVBuilder`. [#7170] by [@Karoid]
|
49
|
+
|
50
|
+
## 2.11.1 [☰](https://github.com/activeadmin/activeadmin/compare/v2.11.0..v2.11.1)
|
51
|
+
|
52
|
+
### Enhancements
|
53
|
+
|
54
|
+
* Add turbolinks support to has many js. [#7384] by [@amiel]
|
55
|
+
|
56
|
+
### Documentation
|
57
|
+
|
58
|
+
* Remove `insert_tag` from Form-Partial docs. [#7394] by [@TonyArra]
|
59
|
+
|
60
|
+
## 2.11.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.10.1..v2.11.0)
|
61
|
+
|
62
|
+
### Enhancements
|
63
|
+
|
64
|
+
* Add Rails 7 Support. [#7235] by [@tagliala]
|
65
|
+
|
66
|
+
### Bug Fixes
|
67
|
+
|
68
|
+
* Fix form SCSS variables no longer being defined in the outermost scope, so no longer being accessible. [#7341] by [@gigorok]
|
69
|
+
|
70
|
+
## 2.10.1 [☰](https://github.com/activeadmin/activeadmin/compare/v2.10.0..v2.10.1)
|
71
|
+
|
72
|
+
### Enhancements
|
73
|
+
|
74
|
+
* Apply `box-sizing: border-box` globally. [#7349] by [@deivid-rodriguez]
|
75
|
+
* Vendor normalize 8.0.1. [#7350] by [@deivid-rodriguez]
|
76
|
+
* Remove deprecation warning using controller filters inside initializer. [#7340] by [@mgrunberg]
|
77
|
+
|
78
|
+
### Bug Fixes
|
79
|
+
|
80
|
+
* Fix frozen string error when downloading CSV and streaming disabled. [#7332] by [@deivid-rodriguez]
|
81
|
+
|
82
|
+
## 2.10.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.9.0..v2.10.0)
|
83
|
+
|
84
|
+
### Enhancements
|
85
|
+
|
86
|
+
* Load favicon from Webpacker assets when use_webpacker is set to true. [#6954] by [@Fs00]
|
87
|
+
* Don't apply sorting to collection until after scoping. [#7205] by [@agrobbin]
|
88
|
+
* Resolve dart sass deprecation warning for division. [#7095] by [@tordans]
|
89
|
+
* Use `instrument` from the Notifications API instead of low level `publish`. [#7262] by [@sprql]
|
90
|
+
* Avoid mutating string literals. [#6936] by [@tomgilligan]
|
91
|
+
* Include print styles in main stylesheet. [#6922] by [@deivid-rodriguez]
|
92
|
+
* Use `POST` for OmniAuth links. [#6916] by [@deivid-rodriguez]
|
93
|
+
* Scope new record instantiation by authorization scope. [#6884] by [@ngouy]
|
94
|
+
* Make `permit_params` and `belongs_to` order independent. [#6906] by [@deivid-rodriguez]
|
95
|
+
* Use collection length instead of running COUNTs for limited collections. [#5660] by [@MmKolodziej]
|
96
|
+
|
97
|
+
### Bug Fixes
|
98
|
+
|
99
|
+
* Show ransackable_scopes filters in search results. [#7127] by [@vlad-psh]
|
100
|
+
|
101
|
+
### Translation Improvements
|
102
|
+
|
103
|
+
* Fix Dutch translation for password reset button. [#7181] by [@mvz]
|
104
|
+
* Add few key to RO pagination.entry. [#6915] by [@lubosch]
|
105
|
+
* Change misleading Korean translation. [#6873] by [@1000ship]
|
106
|
+
|
107
|
+
### Documentation
|
108
|
+
|
109
|
+
* Replace deprecated update_attributes! with update!. [#6959] by [@sergey-alekseev]
|
110
|
+
* Clarify docs on user setup. [#6872] by [@javawizard]
|
111
|
+
|
112
|
+
### Dependency Changes
|
113
|
+
|
114
|
+
* Drop rails 5.2 support. [#7293] by [@deivid-rodriguez]
|
115
|
+
* Drop support for Ruby 2.5. [#7236] by [@alejandroperea]
|
116
|
+
|
117
|
+
## 2.9.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.8.1..v2.9.0)
|
118
|
+
|
119
|
+
### Enhancements
|
120
|
+
|
121
|
+
* Support for Rails 6.1. [#6548] by [@deivid-rodriguez]
|
122
|
+
* Add ability to override "Remove" button text on has_many forms. [#6523] by [@littleforest]
|
123
|
+
* Drop git in gemspec. [#6462] by [@utkarsh2102]
|
124
|
+
|
125
|
+
### Bug Fixes
|
126
|
+
|
127
|
+
* Pick up upstream fixes in devise templates. [#6536] by [@munen]
|
128
|
+
|
129
|
+
### Documentation
|
130
|
+
|
131
|
+
* Fix `has_many` syntax in forms documentation. [#6583] by [@krzcho]
|
132
|
+
* Add example of using `default_main_content` in show pages. [#6487] by [@sjieg]
|
133
|
+
|
134
|
+
### Dependency Changes
|
135
|
+
|
136
|
+
* Remove sassc and sprockets runtime dependencies. [#6584] by [@deivid-rodriguez]
|
137
|
+
|
138
|
+
## 2.8.1 [☰](https://github.com/activeadmin/activeadmin/compare/v2.8.0..v2.8.1)
|
139
|
+
|
140
|
+
### Bug Fixes
|
141
|
+
|
142
|
+
* Fix `permitted_param` generation for `belongs_to` when `:param` is used. [#6460] by [@deivid-rodriguez]
|
143
|
+
* Fix streaming CSV export. [#6451] by [@deivid-rodriguez]
|
144
|
+
* Fix input string filter no rendering dropdown input when its column name ends with a ransack predicate. [#6422] by [@Fivell]
|
145
|
+
|
146
|
+
## 2.8.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.7.0..v2.8.0)
|
147
|
+
|
148
|
+
### Enhancements
|
149
|
+
|
150
|
+
* Allow using PORO decorators. [#6249] by [@brunvez]
|
151
|
+
* Make sure `ActiveAdmin.routes` provides routes in a consistent order. [#6124] by [@jiikko]
|
152
|
+
* Use proper closing tags for HTML in ModalDialog component. [#6221] by [@javierjulio]
|
153
|
+
|
154
|
+
### Bug Fixes
|
155
|
+
|
156
|
+
* Fix comment layout so regardless of size, each is aligned and spaced evenly. [#6393] by [@Ivanov-Anton]
|
157
|
+
|
158
|
+
### Translation Improvements
|
159
|
+
|
160
|
+
* Fix several Arabic translations. [#6368] by [@mshalaby]
|
161
|
+
* Add missing `scope/all` italian translation. [#6341] by [@fuzziness]
|
162
|
+
* Improve Japanese translation. [#6315] by [@rn0rno]
|
163
|
+
* Fix es and es-MX sign_in and sign_up translation. [#6210] by [@roramirez]
|
164
|
+
|
165
|
+
### Documentation
|
166
|
+
|
167
|
+
* Fix filter_columns_for_large_association and filter_method_for_large_association examples. [#6232] by [@ndbroadbent]
|
168
|
+
|
169
|
+
### Dependency Changes
|
170
|
+
|
171
|
+
* Allow formtastic 4. [#6318] by [@deivid-rodriguez]
|
172
|
+
* Drop Ruby 2.4 support. [#6198] by [@deivid-rodriguez]
|
173
|
+
|
174
|
+
## 2.7.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.6.1..v2.7.0)
|
175
|
+
|
176
|
+
### Enhancements
|
177
|
+
|
178
|
+
* Extend menu to allow for nested submenus. [#5994] by [@taralbass]
|
179
|
+
* Add Webpacker compatibility with opt-in config switch and installation generator. [#5855] by [@sgara]
|
180
|
+
|
181
|
+
### Bug Fixes
|
182
|
+
|
183
|
+
* Fix scopes renderer when resource has only optional scopes and their conditions are false. [#6149] by [@Looooong]
|
184
|
+
* Fix some missing wrapper markup in "logged out" layout. [#6086] by [@irmela]
|
185
|
+
* Fix some typos in Vietnamese translation. [#6099] by [@giapnhdev]
|
186
|
+
|
187
|
+
## 2.6.1 [☰](https://github.com/activeadmin/activeadmin/compare/v2.6.0..v2.6.1)
|
6
188
|
|
7
189
|
### Bug Fixes
|
8
190
|
|
@@ -13,7 +195,7 @@
|
|
13
195
|
|
14
196
|
## 2.6.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.5.0..v2.6.0)
|
15
197
|
|
16
|
-
###
|
198
|
+
### Enhancements
|
17
199
|
|
18
200
|
* Display multiple flash messages in separate elements. [#5929] by [@mirelon]
|
19
201
|
* Make delete confirmation messages in French & Spanish gender-neutral. [#5946] by [@cprodhomme]
|
@@ -507,15 +689,17 @@ Please check [0-6-stable] for previous changes.
|
|
507
689
|
[#5504]: https://github.com/activeadmin/activeadmin/pull/5504
|
508
690
|
[#5517]: https://github.com/activeadmin/activeadmin/pull/5517
|
509
691
|
[#5537]: https://github.com/activeadmin/activeadmin/pull/5537
|
692
|
+
[#5548]: https://github.com/activeadmin/activeadmin/pull/5548
|
510
693
|
[#5555]: https://github.com/activeadmin/activeadmin/pull/5555
|
511
694
|
[#5583]: https://github.com/activeadmin/activeadmin/pull/5583
|
695
|
+
[#5590]: https://github.com/activeadmin/activeadmin/pull/5590
|
512
696
|
[#5608]: https://github.com/activeadmin/activeadmin/pull/5608
|
513
697
|
[#5611]: https://github.com/activeadmin/activeadmin/pull/5611
|
514
698
|
[#5627]: https://github.com/activeadmin/activeadmin/pull/5627
|
515
699
|
[#5631]: https://github.com/activeadmin/activeadmin/pull/5631
|
516
700
|
[#5632]: https://github.com/activeadmin/activeadmin/pull/5632
|
517
701
|
[#5650]: https://github.com/activeadmin/activeadmin/pull/5650
|
518
|
-
[#
|
702
|
+
[#5660]: https://github.com/activeadmin/activeadmin/pull/5660
|
519
703
|
[#5662]: https://github.com/activeadmin/activeadmin/pull/5662
|
520
704
|
[#5710]: https://github.com/activeadmin/activeadmin/pull/5710
|
521
705
|
[#5726]: https://github.com/activeadmin/activeadmin/pull/5726
|
@@ -533,39 +717,104 @@ Please check [0-6-stable] for previous changes.
|
|
533
717
|
[#5822]: https://github.com/activeadmin/activeadmin/pull/5822
|
534
718
|
[#5826]: https://github.com/activeadmin/activeadmin/pull/5826
|
535
719
|
[#5831]: https://github.com/activeadmin/activeadmin/pull/5831
|
536
|
-
[#5548]: https://github.com/activeadmin/activeadmin/pull/5548
|
537
720
|
[#5842]: https://github.com/activeadmin/activeadmin/pull/5842
|
538
721
|
[#5854]: https://github.com/activeadmin/activeadmin/pull/5854
|
722
|
+
[#5855]: https://github.com/activeadmin/activeadmin/pull/5855
|
723
|
+
[#5867]: https://github.com/activeadmin/activeadmin/pull/5867
|
724
|
+
[#5870]: https://github.com/activeadmin/activeadmin/pull/5870
|
539
725
|
[#5874]: https://github.com/activeadmin/activeadmin/pull/5874
|
540
726
|
[#5877]: https://github.com/activeadmin/activeadmin/pull/5877
|
541
727
|
[#5886]: https://github.com/activeadmin/activeadmin/pull/5886
|
542
|
-
[#
|
728
|
+
[#5887]: https://github.com/activeadmin/activeadmin/pull/5887
|
543
729
|
[#5894]: https://github.com/activeadmin/activeadmin/pull/5894
|
544
730
|
[#5895]: https://github.com/activeadmin/activeadmin/pull/5895
|
545
|
-
[#
|
546
|
-
[#5887]: https://github.com/activeadmin/activeadmin/pull/5887
|
731
|
+
[#5929]: https://github.com/activeadmin/activeadmin/pull/5929
|
547
732
|
[#5931]: https://github.com/activeadmin/activeadmin/pull/5931
|
548
733
|
[#5938]: https://github.com/activeadmin/activeadmin/pull/5938
|
549
|
-
[#5929]: https://github.com/activeadmin/activeadmin/pull/5929
|
550
734
|
[#5943]: https://github.com/activeadmin/activeadmin/pull/5943
|
551
735
|
[#5946]: https://github.com/activeadmin/activeadmin/pull/5946
|
552
736
|
[#5956]: https://github.com/activeadmin/activeadmin/pull/5956
|
553
737
|
[#5957]: https://github.com/activeadmin/activeadmin/pull/5957
|
738
|
+
[#5994]: https://github.com/activeadmin/activeadmin/pull/5994
|
554
739
|
[#6000]: https://github.com/activeadmin/activeadmin/pull/6000
|
555
740
|
[#6002]: https://github.com/activeadmin/activeadmin/pull/6002
|
556
741
|
[#6047]: https://github.com/activeadmin/activeadmin/pull/6047
|
557
|
-
|
742
|
+
[#6086]: https://github.com/activeadmin/activeadmin/pull/6086
|
743
|
+
[#6099]: https://github.com/activeadmin/activeadmin/pull/6099
|
744
|
+
[#6124]: https://github.com/activeadmin/activeadmin/pull/6124
|
745
|
+
[#6149]: https://github.com/activeadmin/activeadmin/pull/6149
|
746
|
+
[#6198]: https://github.com/activeadmin/activeadmin/pull/6198
|
747
|
+
[#6210]: https://github.com/activeadmin/activeadmin/pull/6210
|
748
|
+
[#6221]: https://github.com/activeadmin/activeadmin/pull/6221
|
749
|
+
[#6232]: https://github.com/activeadmin/activeadmin/pull/6232
|
750
|
+
[#6249]: https://github.com/activeadmin/activeadmin/pull/6249
|
751
|
+
[#6315]: https://github.com/activeadmin/activeadmin/pull/6315
|
752
|
+
[#6318]: https://github.com/activeadmin/activeadmin/pull/6318
|
753
|
+
[#6341]: https://github.com/activeadmin/activeadmin/pull/6341
|
754
|
+
[#6368]: https://github.com/activeadmin/activeadmin/pull/6368
|
755
|
+
[#6393]: https://github.com/activeadmin/activeadmin/pull/6393
|
756
|
+
[#6422]: https://github.com/activeadmin/activeadmin/pull/6422
|
757
|
+
[#6451]: https://github.com/activeadmin/activeadmin/pull/6451
|
758
|
+
[#6460]: https://github.com/activeadmin/activeadmin/pull/6460
|
759
|
+
[#6462]: https://github.com/activeadmin/activeadmin/pull/6462
|
760
|
+
[#6487]: https://github.com/activeadmin/activeadmin/pull/6487
|
761
|
+
[#6523]: https://github.com/activeadmin/activeadmin/pull/6523
|
762
|
+
[#6536]: https://github.com/activeadmin/activeadmin/pull/6536
|
763
|
+
[#6548]: https://github.com/activeadmin/activeadmin/pull/6548
|
764
|
+
[#6583]: https://github.com/activeadmin/activeadmin/pull/6583
|
765
|
+
[#6584]: https://github.com/activeadmin/activeadmin/pull/6584
|
766
|
+
[#6872]: https://github.com/activeadmin/activeadmin/pull/6872
|
767
|
+
[#6873]: https://github.com/activeadmin/activeadmin/pull/6873
|
768
|
+
[#6884]: https://github.com/activeadmin/activeadmin/pull/6884
|
769
|
+
[#6906]: https://github.com/activeadmin/activeadmin/pull/6906
|
770
|
+
[#6915]: https://github.com/activeadmin/activeadmin/pull/6915
|
771
|
+
[#6916]: https://github.com/activeadmin/activeadmin/pull/6916
|
772
|
+
[#6922]: https://github.com/activeadmin/activeadmin/pull/6922
|
773
|
+
[#6936]: https://github.com/activeadmin/activeadmin/pull/6936
|
774
|
+
[#6954]: https://github.com/activeadmin/activeadmin/pull/6954
|
775
|
+
[#6959]: https://github.com/activeadmin/activeadmin/pull/6959
|
776
|
+
[#7095]: https://github.com/activeadmin/activeadmin/pull/7095
|
777
|
+
[#7127]: https://github.com/activeadmin/activeadmin/pull/7127
|
778
|
+
[#7144]: https://github.com/activeadmin/activeadmin/pull/7144
|
779
|
+
[#7170]: https://github.com/activeadmin/activeadmin/pull/7170
|
780
|
+
[#7181]: https://github.com/activeadmin/activeadmin/pull/7181
|
781
|
+
[#7205]: https://github.com/activeadmin/activeadmin/pull/7205
|
782
|
+
[#7235]: https://github.com/activeadmin/activeadmin/pull/7235
|
783
|
+
[#7236]: https://github.com/activeadmin/activeadmin/pull/7236
|
784
|
+
[#7262]: https://github.com/activeadmin/activeadmin/pull/7262
|
785
|
+
[#7293]: https://github.com/activeadmin/activeadmin/pull/7293
|
786
|
+
[#7332]: https://github.com/activeadmin/activeadmin/pull/7332
|
787
|
+
[#7336]: https://github.com/activeadmin/activeadmin/pull/7336
|
788
|
+
[#7340]: https://github.com/activeadmin/activeadmin/pull/7340
|
789
|
+
[#7341]: https://github.com/activeadmin/activeadmin/pull/7341
|
790
|
+
[#7349]: https://github.com/activeadmin/activeadmin/pull/7349
|
791
|
+
[#7350]: https://github.com/activeadmin/activeadmin/pull/7350
|
792
|
+
[#7377]: https://github.com/activeadmin/activeadmin/pull/7377
|
793
|
+
[#7384]: https://github.com/activeadmin/activeadmin/pull/7384
|
794
|
+
[#7394]: https://github.com/activeadmin/activeadmin/pull/7394
|
795
|
+
[#7453]: https://github.com/activeadmin/activeadmin/pull/7453
|
796
|
+
[#7475]: https://github.com/activeadmin/activeadmin/pull/7475
|
797
|
+
[#7476]: https://github.com/activeadmin/activeadmin/pull/7476
|
798
|
+
[#7479]: https://github.com/activeadmin/activeadmin/pull/7479
|
799
|
+
[#7487]: https://github.com/activeadmin/activeadmin/pull/7487
|
800
|
+
[#7488]: https://github.com/activeadmin/activeadmin/pull/7488
|
801
|
+
|
802
|
+
[@1000ship]: https://github.com/1000ship
|
558
803
|
[@5t111111]: https://github.com/5t111111
|
559
804
|
[@aarek]: https://github.com/aarek
|
560
805
|
[@adler99]: https://github.com/adler99
|
806
|
+
[@agrobbin]: https://github.com/agrobbin
|
561
807
|
[@ajw725]: https://github.com/ajw725
|
808
|
+
[@alejandroperea]: https://github.com/alejandroperea
|
562
809
|
[@alex-bogomolov]: https://github.com/alex-bogomolov
|
563
810
|
[@amiel]: https://github.com/amiel
|
811
|
+
[@amit]: https://github.com/amit
|
564
812
|
[@amiuhle]: https://github.com/amiuhle
|
565
813
|
[@andreslemik]: https://github.com/andreslemik
|
566
814
|
[@bartoszkopinski]: https://github.com/bartoszkopinski
|
567
815
|
[@blocknotes]: https://github.com/blocknotes
|
568
816
|
[@bolshakov]: https://github.com/bolshakov
|
817
|
+
[@brunvez]: https://github.com/brunvez
|
569
818
|
[@buren]: https://github.com/buren
|
570
819
|
[@chancancode]: https://github.com/chancancode
|
571
820
|
[@chrp]: https://github.com/chrp
|
@@ -584,6 +833,10 @@ Please check [0-6-stable] for previous changes.
|
|
584
833
|
[@FabioRos]: https://github.com/FabioRos
|
585
834
|
[@faucct]: https://github.com/faucct
|
586
835
|
[@Fivell]: https://github.com/Fivell
|
836
|
+
[@Fs00]: https://github.com/Fs00
|
837
|
+
[@fuzziness]: https://github.com/fuzziness
|
838
|
+
[@giapnhdev]: https://github.com/giapnhdev
|
839
|
+
[@gigorok]: https://github.com/gigorok
|
587
840
|
[@glebtv]: https://github.com/glebtv
|
588
841
|
[@gonzedge]: https://github.com/gonzedge
|
589
842
|
[@guigs]: https://github.com/guigs
|
@@ -592,26 +845,42 @@ Please check [0-6-stable] for previous changes.
|
|
592
845
|
[@innparusu95]: https://github.com/innparusu95
|
593
846
|
[@ionut998]: https://github.com/ionut998
|
594
847
|
[@irmela]: https://github.com/irmela
|
848
|
+
[@ispyropoulos]: https://github.com/ispyropoulos
|
849
|
+
[@Ivanov-Anton]: https://github.com/Ivanov-Anton
|
595
850
|
[@jasl]: https://github.com/jasl
|
851
|
+
[@javawizard]: https://github.com/javawizard
|
596
852
|
[@javierjulio]: https://github.com/javierjulio
|
597
853
|
[@jawa]: https://github.com/jawa
|
854
|
+
[@jaynetics]: https://github.com/jaynetics
|
598
855
|
[@JiiHu]: https://github.com/JiiHu
|
856
|
+
[@jiikko]: https://github.com/jiikko
|
599
857
|
[@johnnyshields]: https://github.com/johnnyshields
|
600
858
|
[@jscheid]: https://github.com/jscheid
|
601
859
|
[@juril33t]: https://github.com/juril33t
|
602
860
|
[@jwesorick]: https://github.com/jwesorick
|
861
|
+
[@Karoid]: https://github.com/Karoid
|
603
862
|
[@kjeldahl]: https://github.com/kjeldahl
|
604
863
|
[@ko-lem]: https://github.com/ko-lem
|
605
864
|
[@kobeumut]: https://github.com/kobeumut
|
606
865
|
[@Kris-LIBIS]: https://github.com/Kris-LIBIS
|
866
|
+
[@krzcho]: https://github.com/krzcho
|
607
867
|
[@kwent]: https://github.com/kwent
|
608
868
|
[@leio10]: https://github.com/leio10
|
869
|
+
[@littleforest]: https://github.com/littleforest
|
870
|
+
[@Looooong]: https://github.com/Looooong
|
871
|
+
[@lubosch]: https://github.com/lubosch
|
609
872
|
[@markstory]: https://github.com/markstory
|
610
873
|
[@mauriciopasquier]: https://github.com/mauriciopasquier
|
611
874
|
[@mconiglio]: https://github.com/mconiglio
|
875
|
+
[@mgrunberg]: https://github.com/mgrunberg
|
612
876
|
[@micred]: https://github.com/micred
|
613
877
|
[@mirelon]: https://github.com/mirelon
|
878
|
+
[@MmKolodziej]: https://github.com/MmKolodziej
|
879
|
+
[@mshalaby]: https://github.com/mshalaby
|
880
|
+
[@munen]: https://github.com/munen
|
881
|
+
[@mvz]: https://github.com/mvz
|
614
882
|
[@ndbroadbent]: https://github.com/ndbroadbent
|
883
|
+
[@ngouy]: https://github.com/ngouy
|
615
884
|
[@Nguyenanh]: https://github.com/Nguyenanh
|
616
885
|
[@orkhan]: https://github.com/orkhan
|
617
886
|
[@panasyuk]: https://github.com/panasyuk
|
@@ -619,22 +888,35 @@ Please check [0-6-stable] for previous changes.
|
|
619
888
|
[@potatosalad]: https://github.com/potatosalad
|
620
889
|
[@pranas]: https://github.com/pranas
|
621
890
|
[@renotocn]: https://github.com/renotocn
|
891
|
+
[@rn0rno]: https://github.com/rn0rno
|
622
892
|
[@RobinvanderVliet]: https://github.com/RobinvanderVliet
|
623
893
|
[@rogerkk]: https://github.com/rogerkk
|
894
|
+
[@roramirez]: https://github.com/roramirez
|
624
895
|
[@seanlinsley]: https://github.com/seanlinsley
|
896
|
+
[@sergey-alekseev]: https://github.com/sergey-alekseev
|
625
897
|
[@sgara]: https://github.com/sgara
|
626
898
|
[@ShallmentMo]: https://github.com/ShallmentMo
|
627
899
|
[@shekibobo]: https://github.com/shekibobo
|
628
900
|
[@shouya]: https://github.com/shouya
|
901
|
+
[@sjieg]: https://github.com/sjieg
|
902
|
+
[@sprql]: https://github.com/sprql
|
629
903
|
[@stefsava]: https://github.com/stefsava
|
630
904
|
[@stereoscott]: https://github.com/stereoscott
|
905
|
+
[@tagliala]: https://github.com/tagliala
|
906
|
+
[@taralbass]: https://github.com/taralbass
|
907
|
+
[@tf]: https://github.com/tf
|
631
908
|
[@tiagotex]: https://github.com/tiagotex
|
632
909
|
[@timoschilling]: https://github.com/timoschilling
|
633
910
|
[@TimPetricola]: https://github.com/TimPetricola
|
911
|
+
[@tomgilligan]: https://github.com/tomgilligan
|
912
|
+
[@TonyArra]: https://github.com/TonyArra
|
913
|
+
[@tordans]: https://github.com/tordans
|
914
|
+
[@utkarsh2102]: https://github.com/utkarsh2102
|
634
915
|
[@varyonic]: https://github.com/varyonic
|
635
916
|
[@vcsjones]: https://github.com/vcsjones
|
636
917
|
[@vfonic]: https://github.com/vfonic
|
637
918
|
[@violeta-p]: https://github.com/violeta-p
|
919
|
+
[@vlad-psh]: https://github.com/vlad-psh
|
638
920
|
[@WaKeMaTTa]: https://github.com/WaKeMaTTa
|
639
921
|
[@wasifhossain]: https://github.com/wasifhossain
|
640
922
|
[@westonganger]: https://github.com/westonganger
|
data/CONTRIBUTING.md
CHANGED
@@ -63,7 +63,7 @@ If you want to test against a Rails version different from the latest, make sure
|
|
63
63
|
you use the correct Gemfile, for example:
|
64
64
|
|
65
65
|
```sh
|
66
|
-
export BUNDLE_GEMFILE=gemfiles/
|
66
|
+
export BUNDLE_GEMFILE=gemfiles/rails_61/Gemfile
|
67
67
|
```
|
68
68
|
|
69
69
|
**Warning** SCSS assets are aimed to be used indifferently with Sprockets **and** webpacker.
|
@@ -115,22 +115,6 @@ checks as the rest of the project. `bin/rake lint` will give you feedback in
|
|
115
115
|
this regard. You can check & fix style issues by running each linter
|
116
116
|
individually. Run `bin/rake -T lint` to see the available linters.
|
117
117
|
|
118
|
-
### Add a changelog entry
|
119
|
-
|
120
|
-
If your PR includes user-observable changes, you'll be asked to add a changelog
|
121
|
-
entry following the existing changelog format.
|
122
|
-
|
123
|
-
The changelog format is the following:
|
124
|
-
|
125
|
-
* One line per PR describing your fix or enhancement.
|
126
|
-
* Entries end with a dot, followed by "[#pr-number] by [@github-username]".
|
127
|
-
* Entries are added under the "Unreleased" section at the top of the file, under
|
128
|
-
the "Bug Fixes" or "Enhancements" subsection.
|
129
|
-
* References to github usernames and pull requests use [shortcut reference
|
130
|
-
links].
|
131
|
-
* Your github username reference definition is included in the correct
|
132
|
-
alphabetical position at the bottom of the file.
|
133
|
-
|
134
118
|
### Make a Pull Request
|
135
119
|
|
136
120
|
At this point, you should switch back to your master branch and make sure it's
|
@@ -152,12 +136,12 @@ git push --set-upstream origin 325-add-japanese-translations
|
|
152
136
|
|
153
137
|
Finally, go to GitHub and [make a Pull Request][] :D
|
154
138
|
|
155
|
-
|
156
|
-
about quality, so your PR won't be merged until all tests pass. It's
|
157
|
-
but it's possible that your changes pass tests in one Rails version
|
158
|
-
another. In that case, you'll have to setup your development
|
159
|
-
explained in step 3) to use the problematic Rails version, and
|
160
|
-
what's going on!
|
139
|
+
Github Actions will run our test suite against all supported Rails versions. We
|
140
|
+
care about quality, so your PR won't be merged until all tests pass. It's
|
141
|
+
unlikely, but it's possible that your changes pass tests in one Rails version
|
142
|
+
but fail in another. In that case, you'll have to setup your development
|
143
|
+
environment (as explained in step 3) to use the problematic Rails version, and
|
144
|
+
investigate what's going on!
|
161
145
|
|
162
146
|
### Keeping your Pull Request updated
|
163
147
|
|
@@ -190,12 +174,12 @@ met.
|
|
190
174
|
|
191
175
|
Maintainers need to do the following to push out a release:
|
192
176
|
|
193
|
-
* Make sure all pull requests are in and that changelog is current
|
194
177
|
* Switch to the master branch and make sure it's up to date.
|
195
178
|
* Make sure you have [chandler] properly configured. Chandler is used to
|
196
179
|
automatically submit github release notes from the changelog right after
|
197
180
|
pushing the gem to rubygems.
|
198
181
|
* Run one of `bin/rake release:prepare_{prerelease,prepatch,patch,preminor,minor,premajor,major}`, push the result and create a PR.
|
182
|
+
* Review and merge the PR. The generated changelog in the PR should include all user visible changes you intend to ship.
|
199
183
|
* Run `bin/rake release` from the target branch once the PR is merged.
|
200
184
|
|
201
185
|
[chandler]: https://github.com/mattbrictson/chandler#2-configure-credentials
|
@@ -204,7 +188,7 @@ Maintainers need to do the following to push out a release:
|
|
204
188
|
[fork Active Admin]: https://help.github.com/articles/fork-a-repo
|
205
189
|
[make a pull request]: https://help.github.com/articles/creating-a-pull-request
|
206
190
|
[git rebasing]: http://git-scm.com/book/en/Git-Branching-Rebasing
|
207
|
-
[interactive rebase]: https://help.github.com/
|
191
|
+
[interactive rebase]: https://help.github.com/en/github/using-git/about-git-rebase
|
208
192
|
[shortcut reference links]: https://github.github.com/gfm/#shortcut-reference-link
|
209
193
|
[Rollup]: https://rollupjs.org/guide/en/#quick-start
|
210
194
|
[Yarn]: https://yarnpkg.com/en/docs/install
|
data/README.md
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
creating elegant backends for website administration.
|
5
5
|
|
6
6
|
[![Version ][rubygems_badge]][rubygems]
|
7
|
-
[![
|
7
|
+
[![Github Actions ][actions_badge]][actions]
|
8
8
|
[![Coverage ][coverage_badge]][coverage]
|
9
9
|
[![Tidelift ][tidelift_badge]][tidelift]
|
10
10
|
[![Inch CI ][inch_badge]][inch]
|
@@ -93,15 +93,15 @@ Thanks to [Open Collective][opencollective contributors] and all our Open Collec
|
|
93
93
|
|
94
94
|
[rubygems_badge]: http://img.shields.io/gem/v/activeadmin.svg
|
95
95
|
[rubygems]: https://rubygems.org/gems/activeadmin
|
96
|
-
[
|
97
|
-
[
|
96
|
+
[actions_badge]: https://github.com/activeadmin/activeadmin/workflows/ci/badge.svg
|
97
|
+
[actions]: https://github.com/activeadmin/activeadmin/actions
|
98
98
|
[coverage_badge]: https://api.codeclimate.com/v1/badges/779e407d22bacff19733/test_coverage
|
99
99
|
[coverage]: https://codeclimate.com/github/activeadmin/activeadmin/test_coverage
|
100
100
|
[inch_badge]: http://inch-ci.org/github/activeadmin/activeadmin.svg?branch=master
|
101
101
|
[inch]: http://inch-ci.org/github/activeadmin/activeadmin
|
102
102
|
[tidelift_badge]: https://tidelift.com/badges/github/activeadmin/activeadmin
|
103
103
|
[tidelift]: https://tidelift.com/subscription/pkg/rubygems-activeadmin?utm_source=rubygems-activeadmin&utm_medium=readme
|
104
|
-
[tidelift_enterprise]: https://tidelift.com/subscription/pkg/rubygems-activeadmin?utm_source=rubygems-activeadmin&utm_medium=referral&utm_campaign=
|
104
|
+
[tidelift_enterprise]: https://tidelift.com/subscription/pkg/rubygems-activeadmin?utm_source=rubygems-activeadmin&utm_medium=referral&utm_campaign=enterprise
|
105
105
|
[tidelift_support]: https://tidelift.com/subscription/pkg/rubygems-activeadmin?utm_source=rubygems-activeadmin&utm_medium=referral&utm_campaign=github&utm_content=support
|
106
106
|
|
107
107
|
[docs]: http://activeadmin.info/0-installation.html
|