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.

Files changed (372) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +546 -0
  3. data/CODE_OF_CONDUCT.md +74 -0
  4. data/CONTRIBUTING.md +217 -0
  5. data/LICENSE +20 -0
  6. data/README.md +110 -0
  7. data/app/assets/images/active_admin/nested_menu_arrow.gif +0 -0
  8. data/app/assets/images/active_admin/nested_menu_arrow_dark.gif +0 -0
  9. data/app/assets/images/active_admin/orderable.png +0 -0
  10. data/app/assets/javascripts/active_admin/base.es6 +23 -0
  11. data/app/assets/javascripts/active_admin/ext/jquery-ui.es6 +7 -0
  12. data/app/assets/javascripts/active_admin/ext/jquery.es6 +9 -0
  13. data/app/assets/javascripts/active_admin/initializers/datepicker.es6 +16 -0
  14. data/app/assets/javascripts/active_admin/initializers/filters.es6 +45 -0
  15. data/app/assets/javascripts/active_admin/initializers/tabs.es6 +6 -0
  16. data/app/assets/javascripts/active_admin/lib/active_admin.es6 +41 -0
  17. data/app/assets/javascripts/active_admin/lib/batch_actions.es6 +55 -0
  18. data/app/assets/javascripts/active_admin/lib/checkbox-toggler.es6 +49 -0
  19. data/app/assets/javascripts/active_admin/lib/dropdown-menu.es6 +123 -0
  20. data/app/assets/javascripts/active_admin/lib/has_many.es6 +95 -0
  21. data/app/assets/javascripts/active_admin/lib/modal_dialog.es6 +61 -0
  22. data/app/assets/javascripts/active_admin/lib/per_page.es6 +47 -0
  23. data/app/assets/javascripts/active_admin/lib/table-checkbox-toggler.es6 +36 -0
  24. data/app/assets/stylesheets/active_admin/_base.scss +41 -0
  25. data/app/assets/stylesheets/active_admin/_forms.scss +326 -0
  26. data/app/assets/stylesheets/active_admin/_header.scss +156 -0
  27. data/app/assets/stylesheets/active_admin/_mixins.scss +1 -0
  28. data/app/assets/stylesheets/active_admin/_typography.scss +100 -0
  29. data/app/assets/stylesheets/active_admin/components/_batch_actions.scss +6 -0
  30. data/app/assets/stylesheets/active_admin/components/_blank_slates.scss +30 -0
  31. data/app/assets/stylesheets/active_admin/components/_breadcrumbs.scss +20 -0
  32. data/app/assets/stylesheets/active_admin/components/_buttons.scss +6 -0
  33. data/app/assets/stylesheets/active_admin/components/_columns.scss +3 -0
  34. data/app/assets/stylesheets/active_admin/components/_comments.scss +41 -0
  35. data/app/assets/stylesheets/active_admin/components/_date_picker.scss +149 -0
  36. data/app/assets/stylesheets/active_admin/components/_dropdown_menu.scss +152 -0
  37. data/app/assets/stylesheets/active_admin/components/_flash_messages.scss +37 -0
  38. data/app/assets/stylesheets/active_admin/components/_grid.scss +9 -0
  39. data/app/assets/stylesheets/active_admin/components/_index_list.scss +12 -0
  40. data/app/assets/stylesheets/active_admin/components/_links.scss +5 -0
  41. data/app/assets/stylesheets/active_admin/components/_modal_dialog.scss +34 -0
  42. data/app/assets/stylesheets/active_admin/components/_pagination.scss +55 -0
  43. data/app/assets/stylesheets/active_admin/components/_panels.scss +6 -0
  44. data/app/assets/stylesheets/active_admin/components/_scopes.scss +13 -0
  45. data/app/assets/stylesheets/active_admin/components/_status_tags.scss +12 -0
  46. data/app/assets/stylesheets/active_admin/components/_table_tools.scss +67 -0
  47. data/app/assets/stylesheets/active_admin/components/_tables.scss +113 -0
  48. data/app/assets/stylesheets/active_admin/components/_tabs.scss +65 -0
  49. data/app/assets/stylesheets/active_admin/components/_unsupported_browser.scss +16 -0
  50. data/app/assets/stylesheets/active_admin/mixins/_all.scss +8 -0
  51. data/app/assets/stylesheets/active_admin/mixins/_buttons.scss +65 -0
  52. data/app/assets/stylesheets/active_admin/mixins/_gradients.scss +28 -0
  53. data/app/assets/stylesheets/active_admin/mixins/_rounded.scss +22 -0
  54. data/app/assets/stylesheets/active_admin/mixins/_sections.scss +41 -0
  55. data/app/assets/stylesheets/active_admin/mixins/_shadows.scss +15 -0
  56. data/app/assets/stylesheets/active_admin/mixins/_typography.scss +3 -0
  57. data/app/assets/stylesheets/active_admin/mixins/_utilities.scss +17 -0
  58. data/app/assets/stylesheets/active_admin/mixins/_variables.scss +34 -0
  59. data/app/assets/stylesheets/active_admin/pages/_logged_out.scss +44 -0
  60. data/app/assets/stylesheets/active_admin/print.scss +287 -0
  61. data/app/assets/stylesheets/active_admin/structure/_footer.scss +14 -0
  62. data/app/assets/stylesheets/active_admin/structure/_main_structure.scss +29 -0
  63. data/app/assets/stylesheets/active_admin/structure/_title_bar.scss +41 -0
  64. data/app/views/active_admin/devise/confirmations/new.html.erb +15 -0
  65. data/app/views/active_admin/devise/mailer/reset_password_instructions.html.erb +8 -0
  66. data/app/views/active_admin/devise/mailer/unlock_instructions.html.erb +7 -0
  67. data/app/views/active_admin/devise/passwords/edit.html.erb +18 -0
  68. data/app/views/active_admin/devise/passwords/new.html.erb +15 -0
  69. data/app/views/active_admin/devise/registrations/new.html.erb +21 -0
  70. data/app/views/active_admin/devise/sessions/new.html.erb +20 -0
  71. data/app/views/active_admin/devise/shared/_error_messages.html.erb +15 -0
  72. data/app/views/active_admin/devise/shared/_links.erb +33 -0
  73. data/app/views/active_admin/devise/unlocks/new.html.erb +15 -0
  74. data/app/views/active_admin/page/index.html.arb +1 -0
  75. data/app/views/active_admin/resource/edit.html.arb +1 -0
  76. data/app/views/active_admin/resource/index.html.arb +1 -0
  77. data/app/views/active_admin/resource/new.html.arb +1 -0
  78. data/app/views/active_admin/resource/show.html.arb +1 -0
  79. data/app/views/kaminari/active_admin/_first_page.html.erb +11 -0
  80. data/app/views/kaminari/active_admin/_gap.html.erb +8 -0
  81. data/app/views/kaminari/active_admin/_last_page.html.erb +11 -0
  82. data/app/views/kaminari/active_admin/_next_page.html.erb +11 -0
  83. data/app/views/kaminari/active_admin/_page.html.erb +12 -0
  84. data/app/views/kaminari/active_admin/_paginator.html.erb +25 -0
  85. data/app/views/kaminari/active_admin/_prev_page.html.erb +11 -0
  86. data/app/views/layouts/active_admin.html.arb +1 -0
  87. data/app/views/layouts/active_admin_logged_out.html.erb +39 -0
  88. data/config/locales/ar.yml +135 -0
  89. data/config/locales/bg.yml +119 -0
  90. data/config/locales/bs.yml +121 -0
  91. data/config/locales/ca.yml +106 -0
  92. data/config/locales/cs.yml +109 -0
  93. data/config/locales/da.yml +137 -0
  94. data/config/locales/de-CH.yml +101 -0
  95. data/config/locales/de.yml +144 -0
  96. data/config/locales/el.yml +126 -0
  97. data/config/locales/en-CA.yml +139 -0
  98. data/config/locales/en-GB.yml +139 -0
  99. data/config/locales/en.yml +162 -0
  100. data/config/locales/eo.yml +145 -0
  101. data/config/locales/es-MX.yml +96 -0
  102. data/config/locales/es.yml +162 -0
  103. data/config/locales/fa.yml +119 -0
  104. data/config/locales/fi.yml +112 -0
  105. data/config/locales/fr.yml +141 -0
  106. data/config/locales/he.yml +141 -0
  107. data/config/locales/hr.yml +123 -0
  108. data/config/locales/hu.yml +102 -0
  109. data/config/locales/id.yml +135 -0
  110. data/config/locales/it.yml +144 -0
  111. data/config/locales/ja.yml +141 -0
  112. data/config/locales/ko.yml +120 -0
  113. data/config/locales/lt.yml +142 -0
  114. data/config/locales/lv.yml +92 -0
  115. data/config/locales/mk.yml +134 -0
  116. data/config/locales/nb.yml +130 -0
  117. data/config/locales/nl.yml +144 -0
  118. data/config/locales/pl.yml +168 -0
  119. data/config/locales/pt-BR.yml +143 -0
  120. data/config/locales/pt-PT.yml +92 -0
  121. data/config/locales/ro.yml +96 -0
  122. data/config/locales/ru.yml +141 -0
  123. data/config/locales/sk.yml +109 -0
  124. data/config/locales/sv-SE.yml +135 -0
  125. data/config/locales/tr.yml +144 -0
  126. data/config/locales/uk.yml +138 -0
  127. data/config/locales/vi.yml +134 -0
  128. data/config/locales/zh-CN.yml +143 -0
  129. data/config/locales/zh-TW.yml +135 -0
  130. data/docs/.gitignore +1 -0
  131. data/docs/0-installation.md +118 -0
  132. data/docs/1-general-configuration.md +204 -0
  133. data/docs/10-custom-pages.md +150 -0
  134. data/docs/11-decorators.md +59 -0
  135. data/docs/12-arbre-components.md +214 -0
  136. data/docs/13-authorization-adapter.md +285 -0
  137. data/docs/14-gotchas.md +138 -0
  138. data/docs/2-resource-customization.md +466 -0
  139. data/docs/3-index-pages.md +328 -0
  140. data/docs/3-index-pages/custom-index.md +35 -0
  141. data/docs/3-index-pages/index-as-block.md +19 -0
  142. data/docs/3-index-pages/index-as-blog.md +69 -0
  143. data/docs/3-index-pages/index-as-grid.md +27 -0
  144. data/docs/3-index-pages/index-as-table.md +227 -0
  145. data/docs/4-csv-format.md +74 -0
  146. data/docs/5-forms.md +232 -0
  147. data/docs/6-show-pages.md +81 -0
  148. data/docs/7-sidebars.md +75 -0
  149. data/docs/8-custom-actions.md +177 -0
  150. data/docs/9-batch-actions.md +237 -0
  151. data/docs/CNAME +1 -0
  152. data/docs/Gemfile +4 -0
  153. data/docs/Gemfile.lock +249 -0
  154. data/docs/README.md +24 -0
  155. data/docs/_config.yml +2 -0
  156. data/docs/_includes/footer.html +8 -0
  157. data/docs/_includes/google-analytics.html +16 -0
  158. data/docs/_includes/head.html +7 -0
  159. data/docs/_includes/toc.html +98 -0
  160. data/docs/_includes/top-menu.html +17 -0
  161. data/docs/_layouts/default.html +21 -0
  162. data/docs/documentation.md +60 -0
  163. data/docs/images/activeadmin.png +0 -0
  164. data/docs/images/code-header.png +0 -0
  165. data/docs/images/divider.png +0 -0
  166. data/docs/images/features.png +0 -0
  167. data/docs/images/tidelift.svg +14 -0
  168. data/docs/index.html +125 -0
  169. data/docs/stylesheets/main.css +1176 -0
  170. data/lib/active_admin.rb +134 -0
  171. data/lib/active_admin/abstract_view_factory.rb +47 -0
  172. data/lib/active_admin/application.rb +234 -0
  173. data/lib/active_admin/application_settings.rb +42 -0
  174. data/lib/active_admin/asset_registration.rb +29 -0
  175. data/lib/active_admin/authorization_adapter.rb +129 -0
  176. data/lib/active_admin/base_controller.rb +81 -0
  177. data/lib/active_admin/base_controller/authorization.rb +127 -0
  178. data/lib/active_admin/base_controller/menu.rb +34 -0
  179. data/lib/active_admin/batch_actions.rb +16 -0
  180. data/lib/active_admin/batch_actions/controller.rb +40 -0
  181. data/lib/active_admin/batch_actions/resource_extension.rb +155 -0
  182. data/lib/active_admin/batch_actions/views/batch_action_form.rb +38 -0
  183. data/lib/active_admin/batch_actions/views/batch_action_selector.rb +58 -0
  184. data/lib/active_admin/batch_actions/views/selection_cells.rb +38 -0
  185. data/lib/active_admin/callbacks.rb +88 -0
  186. data/lib/active_admin/cancan_adapter.rb +36 -0
  187. data/lib/active_admin/component.rb +5 -0
  188. data/lib/active_admin/controller_action.rb +13 -0
  189. data/lib/active_admin/csv_builder.rb +133 -0
  190. data/lib/active_admin/dependency.rb +100 -0
  191. data/lib/active_admin/deprecation.rb +10 -0
  192. data/lib/active_admin/devise.rb +80 -0
  193. data/lib/active_admin/dsl.rb +160 -0
  194. data/lib/active_admin/dynamic_setting.rb +38 -0
  195. data/lib/active_admin/dynamic_settings_node.rb +28 -0
  196. data/lib/active_admin/engine.rb +21 -0
  197. data/lib/active_admin/error.rb +64 -0
  198. data/lib/active_admin/filters.rb +11 -0
  199. data/lib/active_admin/filters/active.rb +29 -0
  200. data/lib/active_admin/filters/active_filter.rb +124 -0
  201. data/lib/active_admin/filters/active_sidebar.rb +54 -0
  202. data/lib/active_admin/filters/dsl.rb +21 -0
  203. data/lib/active_admin/filters/forms.rb +85 -0
  204. data/lib/active_admin/filters/formtastic_addons.rb +79 -0
  205. data/lib/active_admin/filters/resource_extension.rb +155 -0
  206. data/lib/active_admin/form_builder.rb +182 -0
  207. data/lib/active_admin/generators/boilerplate.rb +45 -0
  208. data/lib/active_admin/helpers/collection.rb +19 -0
  209. data/lib/active_admin/helpers/i18n.rb +7 -0
  210. data/lib/active_admin/helpers/optional_display.rb +38 -0
  211. data/lib/active_admin/helpers/routes/url_helpers.rb +15 -0
  212. data/lib/active_admin/helpers/scope_chain.rb +24 -0
  213. data/lib/active_admin/inputs.rb +21 -0
  214. data/lib/active_admin/inputs/datepicker_input.rb +27 -0
  215. data/lib/active_admin/inputs/filters/base.rb +44 -0
  216. data/lib/active_admin/inputs/filters/base/search_method_select.rb +75 -0
  217. data/lib/active_admin/inputs/filters/boolean_input.rb +24 -0
  218. data/lib/active_admin/inputs/filters/check_boxes_input.rb +50 -0
  219. data/lib/active_admin/inputs/filters/date_picker_input.rb +13 -0
  220. data/lib/active_admin/inputs/filters/date_range_input.rb +49 -0
  221. data/lib/active_admin/inputs/filters/numeric_input.rb +12 -0
  222. data/lib/active_admin/inputs/filters/select_input.rb +58 -0
  223. data/lib/active_admin/inputs/filters/string_input.rb +26 -0
  224. data/lib/active_admin/inputs/filters/text_input.rb +25 -0
  225. data/lib/active_admin/localizers.rb +11 -0
  226. data/lib/active_admin/localizers/resource_localizer.rb +35 -0
  227. data/lib/active_admin/menu.rb +102 -0
  228. data/lib/active_admin/menu_collection.rb +91 -0
  229. data/lib/active_admin/menu_item.rb +69 -0
  230. data/lib/active_admin/namespace.rb +266 -0
  231. data/lib/active_admin/namespace_settings.rb +110 -0
  232. data/lib/active_admin/order_clause.rb +48 -0
  233. data/lib/active_admin/orm/active_record.rb +5 -0
  234. data/lib/active_admin/orm/active_record/comments.rb +101 -0
  235. data/lib/active_admin/orm/active_record/comments/comment.rb +31 -0
  236. data/lib/active_admin/orm/active_record/comments/namespace_helper.rb +14 -0
  237. data/lib/active_admin/orm/active_record/comments/resource_helper.rb +17 -0
  238. data/lib/active_admin/orm/active_record/comments/show_page_helper.rb +23 -0
  239. data/lib/active_admin/orm/active_record/comments/views.rb +2 -0
  240. data/lib/active_admin/orm/active_record/comments/views/active_admin_comments.rb +100 -0
  241. data/lib/active_admin/orm/mongoid.rb +1 -0
  242. data/lib/active_admin/orm/mongoid/.gitkeep +0 -0
  243. data/lib/active_admin/page.rb +111 -0
  244. data/lib/active_admin/page_controller.rb +29 -0
  245. data/lib/active_admin/page_dsl.rb +32 -0
  246. data/lib/active_admin/page_presenter.rb +33 -0
  247. data/lib/active_admin/pundit_adapter.rb +81 -0
  248. data/lib/active_admin/resource.rb +207 -0
  249. data/lib/active_admin/resource/action_items.rb +120 -0
  250. data/lib/active_admin/resource/attributes.rb +47 -0
  251. data/lib/active_admin/resource/belongs_to.rb +50 -0
  252. data/lib/active_admin/resource/controllers.rb +19 -0
  253. data/lib/active_admin/resource/includes.rb +12 -0
  254. data/lib/active_admin/resource/menu.rb +67 -0
  255. data/lib/active_admin/resource/naming.rb +62 -0
  256. data/lib/active_admin/resource/ordering.rb +11 -0
  257. data/lib/active_admin/resource/page_presenters.rb +82 -0
  258. data/lib/active_admin/resource/pagination.rb +23 -0
  259. data/lib/active_admin/resource/routes.rb +139 -0
  260. data/lib/active_admin/resource/scope_to.rb +74 -0
  261. data/lib/active_admin/resource/scopes.rb +52 -0
  262. data/lib/active_admin/resource/sidebars.rb +28 -0
  263. data/lib/active_admin/resource_collection.rb +72 -0
  264. data/lib/active_admin/resource_controller.rb +64 -0
  265. data/lib/active_admin/resource_controller/action_builder.rb +31 -0
  266. data/lib/active_admin/resource_controller/data_access.rb +322 -0
  267. data/lib/active_admin/resource_controller/decorators.rb +102 -0
  268. data/lib/active_admin/resource_controller/resource_class_methods.rb +26 -0
  269. data/lib/active_admin/resource_controller/scoping.rb +31 -0
  270. data/lib/active_admin/resource_controller/sidebars.rb +18 -0
  271. data/lib/active_admin/resource_controller/streaming.rb +43 -0
  272. data/lib/active_admin/resource_dsl.rb +224 -0
  273. data/lib/active_admin/router.rb +114 -0
  274. data/lib/active_admin/scope.rb +64 -0
  275. data/lib/active_admin/settings_node.rb +19 -0
  276. data/lib/active_admin/sidebar_section.rb +39 -0
  277. data/lib/active_admin/version.rb +3 -0
  278. data/lib/active_admin/view_factory.rb +27 -0
  279. data/lib/active_admin/view_helpers.rb +20 -0
  280. data/lib/active_admin/view_helpers/active_admin_application_helper.rb +12 -0
  281. data/lib/active_admin/view_helpers/auto_link_helper.rb +45 -0
  282. data/lib/active_admin/view_helpers/breadcrumb_helper.rb +33 -0
  283. data/lib/active_admin/view_helpers/display_helper.rb +104 -0
  284. data/lib/active_admin/view_helpers/download_format_links_helper.rb +59 -0
  285. data/lib/active_admin/view_helpers/fields_for.rb +50 -0
  286. data/lib/active_admin/view_helpers/flash_helper.rb +14 -0
  287. data/lib/active_admin/view_helpers/form_helper.rb +20 -0
  288. data/lib/active_admin/view_helpers/method_or_proc_helper.rb +100 -0
  289. data/lib/active_admin/view_helpers/scope_name_helper.rb +16 -0
  290. data/lib/active_admin/view_helpers/sidebar_helper.rb +15 -0
  291. data/lib/active_admin/view_helpers/title_helper.rb +11 -0
  292. data/lib/active_admin/view_helpers/view_factory_helper.rb +11 -0
  293. data/lib/active_admin/views.rb +8 -0
  294. data/lib/active_admin/views/action_items.rb +17 -0
  295. data/lib/active_admin/views/components/active_admin_form.rb +155 -0
  296. data/lib/active_admin/views/components/attributes_table.rb +94 -0
  297. data/lib/active_admin/views/components/blank_slate.rb +17 -0
  298. data/lib/active_admin/views/components/columns.rb +161 -0
  299. data/lib/active_admin/views/components/dropdown_menu.rb +71 -0
  300. data/lib/active_admin/views/components/index_list.rb +69 -0
  301. data/lib/active_admin/views/components/menu.rb +32 -0
  302. data/lib/active_admin/views/components/menu_item.rb +58 -0
  303. data/lib/active_admin/views/components/paginated_collection.rb +159 -0
  304. data/lib/active_admin/views/components/panel.rb +38 -0
  305. data/lib/active_admin/views/components/scopes.rb +72 -0
  306. data/lib/active_admin/views/components/sidebar.rb +13 -0
  307. data/lib/active_admin/views/components/sidebar_section.rb +34 -0
  308. data/lib/active_admin/views/components/site_title.rb +54 -0
  309. data/lib/active_admin/views/components/status_tag.rb +75 -0
  310. data/lib/active_admin/views/components/table_for.rb +209 -0
  311. data/lib/active_admin/views/components/tabs.rb +40 -0
  312. data/lib/active_admin/views/components/unsupported_browser.rb +11 -0
  313. data/lib/active_admin/views/footer.rb +30 -0
  314. data/lib/active_admin/views/header.rb +19 -0
  315. data/lib/active_admin/views/index_as_block.rb +36 -0
  316. data/lib/active_admin/views/index_as_blog.rb +155 -0
  317. data/lib/active_admin/views/index_as_grid.rb +80 -0
  318. data/lib/active_admin/views/index_as_table.rb +392 -0
  319. data/lib/active_admin/views/pages/base.rb +126 -0
  320. data/lib/active_admin/views/pages/form.rb +64 -0
  321. data/lib/active_admin/views/pages/index.rb +163 -0
  322. data/lib/active_admin/views/pages/layout.rb +26 -0
  323. data/lib/active_admin/views/pages/page.rb +30 -0
  324. data/lib/active_admin/views/pages/show.rb +65 -0
  325. data/lib/active_admin/views/tabbed_navigation.rb +11 -0
  326. data/lib/active_admin/views/title_bar.rb +55 -0
  327. data/lib/activeadmin.rb +1 -0
  328. data/lib/generators/active_admin/assets/assets_generator.rb +14 -0
  329. data/lib/generators/active_admin/assets/templates/active_admin.js +1 -0
  330. data/lib/generators/active_admin/assets/templates/active_admin.scss +17 -0
  331. data/lib/generators/active_admin/devise/devise_generator.rb +68 -0
  332. data/lib/generators/active_admin/install/install_generator.rb +49 -0
  333. data/lib/generators/active_admin/install/templates/active_admin.rb.erb +315 -0
  334. data/lib/generators/active_admin/install/templates/admin_users.rb.erb +28 -0
  335. data/lib/generators/active_admin/install/templates/dashboard.rb +32 -0
  336. data/lib/generators/active_admin/install/templates/migrations/create_active_admin_comments.rb.erb +16 -0
  337. data/lib/generators/active_admin/page/USAGE +8 -0
  338. data/lib/generators/active_admin/page/page_generator.rb +12 -0
  339. data/lib/generators/active_admin/page/templates/page.rb +5 -0
  340. data/lib/generators/active_admin/resource/resource_generator.rb +20 -0
  341. data/lib/generators/active_admin/resource/templates/admin.rb.erb +44 -0
  342. data/lib/ransack_ext.rb +20 -0
  343. data/vendor/assets/javascripts/jquery-ui/data.js +41 -0
  344. data/vendor/assets/javascripts/jquery-ui/disable-selection.js +48 -0
  345. data/vendor/assets/javascripts/jquery-ui/escape-selector.js +23 -0
  346. data/vendor/assets/javascripts/jquery-ui/focusable.js +86 -0
  347. data/vendor/assets/javascripts/jquery-ui/form-reset-mixin.js +80 -0
  348. data/vendor/assets/javascripts/jquery-ui/form.js +22 -0
  349. data/vendor/assets/javascripts/jquery-ui/ie.js +17 -0
  350. data/vendor/assets/javascripts/jquery-ui/keycode.js +47 -0
  351. data/vendor/assets/javascripts/jquery-ui/labels.js +65 -0
  352. data/vendor/assets/javascripts/jquery-ui/plugin.js +46 -0
  353. data/vendor/assets/javascripts/jquery-ui/position.js +500 -0
  354. data/vendor/assets/javascripts/jquery-ui/safe-active-element.js +42 -0
  355. data/vendor/assets/javascripts/jquery-ui/safe-blur.js +23 -0
  356. data/vendor/assets/javascripts/jquery-ui/scroll-parent.js +47 -0
  357. data/vendor/assets/javascripts/jquery-ui/tabbable.js +38 -0
  358. data/vendor/assets/javascripts/jquery-ui/unique-id.js +51 -0
  359. data/vendor/assets/javascripts/jquery-ui/version.js +17 -0
  360. data/vendor/assets/javascripts/jquery-ui/widget.js +735 -0
  361. data/vendor/assets/javascripts/jquery-ui/widgets/button.js +391 -0
  362. data/vendor/assets/javascripts/jquery-ui/widgets/checkboxradio.js +291 -0
  363. data/vendor/assets/javascripts/jquery-ui/widgets/controlgroup.js +300 -0
  364. data/vendor/assets/javascripts/jquery-ui/widgets/datepicker.js +2123 -0
  365. data/vendor/assets/javascripts/jquery-ui/widgets/dialog.js +954 -0
  366. data/vendor/assets/javascripts/jquery-ui/widgets/draggable.js +1259 -0
  367. data/vendor/assets/javascripts/jquery-ui/widgets/mouse.js +230 -0
  368. data/vendor/assets/javascripts/jquery-ui/widgets/resizable.js +1207 -0
  369. data/vendor/assets/javascripts/jquery-ui/widgets/sortable.js +1561 -0
  370. data/vendor/assets/javascripts/jquery-ui/widgets/tabs.js +931 -0
  371. data/vendor/assets/stylesheets/active_admin/_normalize.scss +447 -0
  372. metadata +616 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: e70a90d683c4af1876248495c8c055e9eb21669bac351b42dcdeb175f9003c62
4
+ data.tar.gz: 9f8029a8686ff5dd00932a248f620b1481c1d493f4d10594dc4549de07d269a8
5
+ SHA512:
6
+ metadata.gz: cdd5161de2dd77f1a01d4eae59f09c16c2f1aa356142a1add9fa7cfe8516bdff1676ebf98d0162c6ec736d0bdfaaba6a4f86b73664c734ac54b54a82d2808cd0
7
+ data.tar.gz: 4da12f46a43f27af9d4301520dfd337f31efe340890c8b255a0f11e92015996395d9a1f135a7f8a0f34534de493570ff065bff339b5e621837a06dcaf8985064
@@ -0,0 +1,546 @@
1
+ # Changelog
2
+
3
+ ## Unreleased
4
+
5
+ ## 2.2.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.1.0..v2.2.0)
6
+
7
+ ### Enhancements
8
+
9
+ #### Minor
10
+
11
+ * The `status_tag` component now supports different labels for `false` and `nil` boolean cases through the locale. Both default to display "No" for backwards compatibility. [#5794] by [@javierjulio]
12
+ * Add Macedonian locale. [#5710] by [@violeta-p]
13
+
14
+ ### Bug Fixes
15
+
16
+ * Fix pundit policy retrieving for static pages when the pundit namespace is :active_admin. [#5777] by [@kwent]
17
+ * Fix show page title not being properly escaped if title's content included HTML. [#5802] by [@deivid-rodriguez]
18
+ * Revert [21b6138f] from [#5740] since it actually caused the performance in development to regress. [#5801] by [@deivid-rodriguez]
19
+
20
+ ## 2.1.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.0.0..v2.1.0)
21
+
22
+ ### Bug Fixes
23
+
24
+ * Ensure application gets reloaded only once. [#5740] by [@jscheid]
25
+ * Crash when rendering comments from a custom controller block. [#5758] by [@deivid-rodriguez]
26
+ * Switch `sass` dependency to `sassc-rails`, since `sass` is no longer supported and since it restores support for directly importing `css` files. [#5504] by [@deivid-rodriguez]
27
+
28
+ ### Removals
29
+
30
+ * Support for ruby 2.3 has been removed. [#5751] by [@deivid-rodriguez]
31
+
32
+ ## 2.0.0 [☰](https://github.com/activeadmin/activeadmin/compare/v2.0.0.rc2..v2.0.0)
33
+
34
+ _No changes_.
35
+
36
+ ## 2.0.0.rc2 [☰](https://github.com/activeadmin/activeadmin/compare/v2.0.0.rc1..v2.0.0.rc2)
37
+
38
+ ### Enhancements
39
+
40
+ #### Minor
41
+
42
+ * Require arbre `~> 1.2, >= 1.2.1`. [#5726] by [@ionut998], and [#5738] by [@deivid-rodriguez]
43
+
44
+ ## 2.0.0.rc1 [☰](https://github.com/activeadmin/activeadmin/compare/v1.4.3..v2.0.0.rc1)
45
+
46
+ ### Enhancements
47
+
48
+ * Add your own content to the site `<head>`, like analytics. [#5590] by [@buren]
49
+
50
+ ```ruby
51
+ ActiveAdmin.setup do |config|
52
+ config.head = ''.html_safe
53
+ end
54
+ ```
55
+
56
+ * Consider authorization when displaying comments in show page. [#5555] by [@amiuhle]
57
+
58
+ #### Minor
59
+
60
+ * Add better support for rendering lists. [#5370] by [@dkniffin]
61
+ * Undeprecate `config.register_stylesheet` and `config.register_javascript` for lack of better solution for including external assets. It might be reevaluated in the future. [#5662] by [@deivid-rodriguez]
62
+
63
+ ### Security Fixes
64
+
65
+ * Prevent leaking hashed passwords via user CSV export and adds a config option for sensitive attributes. [#5486] by [@chrp]
66
+
67
+ ### Bug Fixes
68
+
69
+ * Fix for paginated collections with `per_page: Array, pagination_total: false`. [#5627] by [@bartoszkopinski]
70
+ * Restrict ransack requirement to >= 2.1.1 to play nice with Rails 5.2.2. [#5632] by [@deivid-rodriguez]
71
+ * Bad interpolation variables on pagination keys in Lithuanian translation. [#5631] by [@deivid-rodriguez]
72
+ * Tabs are not correctly created when using non-transliteratable characters as title. [#5650] by [@panasyuk]
73
+ * Sidebar title internationalization. [#5417] by [@WaKeMaTTa]
74
+ * `filter` labels not allowing a `Proc` to be passed. [#5418] by [@WaKeMaTTa]
75
+
76
+ ### Removals
77
+
78
+ * Rails 4.2 support has been dropped. [#5104] by [@javierjulio] and [@deivid-rodriguez]
79
+ * Dependency on coffee-rails has been removed. [#5081] by [@javierjulio]
80
+ If your application uses coffescript but was relying on ActiveAdmin to provide
81
+ the dependency, you need to add the `coffee-script` gem to your `Gemfile` to
82
+ restore it. If your only usage of coffescript was the
83
+ `active_admin.js.coffee` generated by ActiveAdmin's generator, you can also
84
+ convert that file to plain JS (`//= require active_admin/base` if you
85
+ didn't add any stuff to it).
86
+ * Devise 3 support has been dropped. [#5608] by [@deivid-rodriguez] and [@javierjulio]
87
+ * `action_item` without a name has been removed. [#5099] by [@javierjulio]
88
+
89
+ ## 1.4.3 [☰](https://github.com/activeadmin/activeadmin/compare/v1.4.2..v1.4.3)
90
+
91
+ ### Bug Fixes
92
+
93
+ * Fix `form` parameter to `batch_action` no longer accepting procs. [#5611] by [@buren] and [@deivid-rodriguez]
94
+ * Fix passing a proc to `scope_to`. [#5611] by [@deivid-rodriguez]
95
+
96
+ ## 1.4.2 [☰](https://github.com/activeadmin/activeadmin/compare/v1.4.1..v1.4.2)
97
+
98
+ ### Bug Fixes
99
+
100
+ * Fix `input_html` filter option evaluated only once. [#5376] by [@kjeldahl]
101
+
102
+ ## 1.4.1 [☰](https://github.com/activeadmin/activeadmin/compare/v1.4.0..v1.4.1)
103
+
104
+ ### Bug Fixes
105
+
106
+ * Fix menu item link with method delete. [#5583] by [@tiagotex]
107
+
108
+ ## 1.4.0 [☰](https://github.com/activeadmin/activeadmin/compare/v1.3.1..v1.4.0)
109
+
110
+ ### Enhancements
111
+
112
+ #### Minor
113
+
114
+ * Add missing I18n for comments. [#5458], [#5461] by [@mauriciopasquier]
115
+ * Fix batch_actions.delete_confirmation translation in zh-CN.yml. [#5453] by [@ShallmentMo]
116
+ * Add some missing italian translations. [#5433] by [@stefsava]
117
+ * Enhance some chinese translations. [#5413] by [@shouya]
118
+ * Add missing filter predicate translations to nb. [#5357] by [@rogerkk]
119
+ * Add missing norwegian comment translations. [#5375] by [@rogerkk]
120
+ * Add missing dutch translations. [#5368] by [@dennisvdvliet]
121
+ * Add missing german translations. [#5341] by [@eikes]
122
+ * Add missing spanish translation. [#5336] by [@mconiglio]
123
+ * Add from and to predicates for russian language. [#5330] by [@glebtv]
124
+ * Fix typo in finnish translation. [#5320] by [@JiiHu]
125
+ * Add missing turkish translations. [#5295] by [@kobeumut]
126
+ * Add missing chinese translations. [#5266] by [@jasl]
127
+ * Allow proc label in datepicker input. [#5408] by [@tiagotex]
128
+ * Add `group` attribute to scopes in order to show them in grouped. [#5359] by [@leio10]
129
+ * Add missing polish translations and improve existing ones. [#5537] by [@Wowu]
130
+ * Add `priority` option to `action_item`. [#5334] by [@andreslemik]
131
+
132
+ ### Bug Fixes
133
+
134
+ * Fixed the string representation of the resolved `sort_key` when no explicit `sortable` attribute is passed. [#5464] by [@chumakoff]
135
+ * Fixed docs on the column `sortable` attribute (which actually doesn't have to be explicitly specified when a block is passed to column). [#5464] by [@chumakoff]
136
+ * Fixed `if:` scope option when a lambda is passed. [#5501] by [@deivid-rodriguez]
137
+ * Comment validation adding redundant errors when resource is missing. [#5517] by [@deivid-rodriguez]
138
+ * Fixed resource filtering by association when the resource has custom primary key. [#5446] by [@wasifhossain]
139
+ * Fixed "create anoter" checkbox styling. [#5324] by [@faucct]
140
+
141
+ ## 1.3.1 [☰](https://github.com/activeadmin/activeadmin/compare/v1.3.0..v1.3.1)
142
+
143
+ ### Bug Fixes
144
+
145
+ * gemspec should have more permissive ransack dependency. [#5448] by [@varyonic]
146
+
147
+ ## 1.3.0 [☰](https://github.com/activeadmin/activeadmin/compare/v1.2.1..v1.3.0)
148
+
149
+ ### Enhancements
150
+
151
+ #### Major
152
+
153
+ * Rails 5.2 support [#5343] by [@varyonic], [#5399], [#5401] by [@zorab47]
154
+
155
+ ## 1.2.1 [☰](https://github.com/activeadmin/activeadmin/compare/v1.2.0..v1.2.1)
156
+
157
+ ### Bug Fixes
158
+
159
+ * Resolve issue with [#5275] preventing XSS in filters sidebar. [#5299] by [@faucct]
160
+
161
+ ## 1.2.0 [☰](https://github.com/activeadmin/activeadmin/compare/v1.1.0..v1.2.0)
162
+
163
+ ### Enhancements
164
+
165
+ #### Minor
166
+
167
+ * Do not display pagination info when there are no comments. [#5119] by [@alex-bogomolov]
168
+ * Revert generated config files to pluralized. [#5120] by [@varyonic], [#5137] by [@deivid-rodriguez]
169
+ * Warn when action definition overwrites controller method. [#5167] by [@aarek]
170
+ * Better performance of comments show view. [#5208] by [@dhyegofernando]
171
+ * Mitigate memory bloat [#4118] with CSV exports. [#5251] by [@f1sherman]
172
+ * Fix issue applying custom decorations. [#5253] by [@faucct]
173
+ * Brazilian locale updated. [#5125] by [@renotocn]
174
+ * Japanese locale updated. [#5143] by [@5t111111], [#5157] by [@innparusu95]
175
+ * Italian locale updated. [#5180] by [@blocknotes]
176
+ * Swedish locale updated. [#5187] by [@jawa]
177
+ * Vietnamese locale updated. [#5194] by [@Nguyenanh]
178
+ * Esperanto locale added. [#5210] by [@RobinvanderVliet]
179
+
180
+ ### Bug Fixes
181
+
182
+ * Fix a couple of issues rendering filter labels. [#5223] by [@wspurgin]
183
+ * Prevent NameError when filtering on a namespaced association. [#5240] by [@DanielHeath]
184
+ * Fix undefined method error in Ransack when building filters. [#5238] by [@wspurgin]
185
+ * Fixed [#5198] Prevent XSS on sidebar's current filter rendering. [#5275] by [@deivid-rodriguez]
186
+ * Sanitize display_name. [#5284] by [@markstory]
187
+
188
+ ## 1.1.0 [☰](https://github.com/activeadmin/activeadmin/compare/v1.0.0..v1.1.0)
189
+
190
+ ### Bug Fixes
191
+
192
+ * Fixed [#5093] Handle table prefix & table suffix for `ActiveAdminComment` model
193
+ * Fixed [#4173] by including the default Kaminari templates. [#5069] by [@javierjulio]
194
+ * Fixed [#5043]. Do not crash in sidebar rendering when a default scope is not specified. [#5044] by [@Fivell]
195
+ * Fixed [#3894]. Make tab's component work with non-ascii titles. [#5046] by [@Fivell]
196
+
197
+ ### Removals
198
+
199
+ * Ruby 2.1 support has been dropped. [#5003] by [@deivid-rodriguez]
200
+ * Replaced `sass-rails` with `sass` dependency. [#5037] by [@javierjulio]
201
+ * Removed `jquery-ui-rails` as a dependency. [#5052] by [@javierjulio]
202
+ The specific jQuery UI assets used are now within the vendor directory. This
203
+ will be replaced by alternatives and dropped entirely in a major release.
204
+ Please remove any direct inclusions of `//= require jquery-ui`. This allows us
205
+ to upgrade to jquery v3.
206
+
207
+ ### Deprecations
208
+
209
+ * Deprecated `config.register_stylesheet` and `config.register_javascript`. Import your CSS and JS files in `active_admin.scss` or `active_admin.js`. [#5060] by [@javierjulio]
210
+ * Deprecated `type` param from `status_tag` and related CSS classes [#4989] by [@javierjulio]
211
+ The method signature has changed from:
212
+
213
+ ```ruby
214
+ status_tag(status, :ok, class: 'completed', label: 'on')
215
+ ```
216
+
217
+ to:
218
+
219
+ ```ruby
220
+ status_tag(status, class: 'completed ok', label: 'on')
221
+ ```
222
+
223
+ The following CSS classes have been deprecated and will be removed in the future:
224
+
225
+ ```css
226
+ .status_tag {
227
+ &.ok, &.published, &.complete, &.completed, &.green { background: #8daa92; }
228
+ &.warn, &.warning, &.orange { background: #e29b20; }
229
+ &.error, &.errored, &.red { background: #d45f53; }
230
+ }
231
+ ```
232
+
233
+ ### Enhancements
234
+
235
+ #### Minor
236
+
237
+ * Support proc as an input_html option value when declaring filters. [#5029] by [@Fivell]
238
+ * Base localization support, better associations handling for active filters sidebar. [#4951] by [@Fivell]
239
+ * Allow AA scopes to return paginated collections. [#4996] by [@Fivell]
240
+ * Added `scopes_show_count` configuration to setup show_count attribute for scopes globally. [#4950] by [@Fivell]
241
+ * Allow custom panel title given with `attributes_table`. [#4940] by [@ajw725]
242
+ * Allow passing a class to `action_item` block. [#4997] by [@Fivell]
243
+ * Add pagination to the comments section. [#5088] by [@alex-bogomolov]
244
+
245
+ ## 1.0.0 [☰](https://github.com/activeadmin/activeadmin/compare/v0.6.3..v1.0.0)
246
+
247
+ ### Breaking Changes
248
+
249
+ * Rename `allow_comments` to `comments` for more consistent naming. [#3695] by [@pranas]
250
+ * JavaScript `window.AA` has been removed, use `window.ActiveAdmin`. [#3606] by [@timoschilling]
251
+ * `f.form_buffers` has been removed. [#3486] by [@varyonic]
252
+ * Iconic has been removed. [#3553] by [@timoschilling]
253
+ * `config.show_comments_in_menu` has been removed, see `config.comments_menu`. [#4187] by [@drn]
254
+ * Rails 3.2 & Ruby 1.9.3 support has been dropped. [#4848] by [@deivid-rodriguez]
255
+ * Ruby 2.0.0 support has been dropped. [#4851] by [@deivid-rodriguez]
256
+ * Rails 4.0 & 4.1 support has been dropped. [#4870] by [@deivid-rodriguez]
257
+
258
+ ### Enhancements
259
+
260
+ #### Major
261
+
262
+ * Migration from Metasearch to Ransack. [#1979] by [@seanlinsley]
263
+ * Rails 4 support. [#2326] by many people :heart:
264
+ * Rails 4.2 support. [#3731] by [@gonzedge] and [@timoschilling]
265
+ * Rails 5 support. [#4254] by [@seanlinsley]
266
+ * Rails 5.1 support. [#4882] by [@varyonic]
267
+
268
+ #### Minor
269
+
270
+ * "Create another" checkbox for the new resource page. [#4477] by [@bolshakov]
271
+ * Page supports belongs_to. [#4759] by [@Fivell] and [@zorab47]
272
+ * Support for custom sorting strategies. [#4768] by [@Fivell]
273
+ * Stream CSV downloads as they're generated. [#3038] by [@craigmcnamara]
274
+ * Disable streaming in development for easier debugging. [#3535] by [@seanlinsley]
275
+ * Improved code reloading. [#3783] by [@chancancode]
276
+ * Do not auto link to inaccessible actions. [#3686] by [@pranas]
277
+ * Allow to enable comments on per-resource basis. [#3695] by [@pranas]
278
+ * Unify DSL for index `actions` and `actions dropdown: true`. [#3463] by [@timoschilling]
279
+ * Add DSL method `includes` for `ActiveRecord::Relation#includes`. [#3464] by [@timoschilling]
280
+ * BOM (byte order mark) configurable for CSV download. [#3519] by [@timoschilling]
281
+ * Column block on table index is now sortable by default. [#3075] by [@dmitry]
282
+ * Allow Arbre to be used inside ActiveAdmin forms. [#3486] by [@varyonic]
283
+ * Make AA ORM-agnostic. [#2545] by [@johnnyshields]
284
+ * Add multi-record support to `attributes_table_for`. [#2544] by [@zorab47]
285
+ * Table CSS classes are now prefixed to prevent clashes. [#2532] by [@TimPetricola]
286
+ * Allow Inherited Resources shorthand for redirection. [#2001] by [@seanlinsley]
287
+
288
+ ```ruby
289
+ controller do
290
+ # Redirects to index page instead of rendering updated resource
291
+ def update
292
+ update!{ collection_path }
293
+ end
294
+ end
295
+ ```
296
+
297
+ * Accept block for download links. [#2040] by [@potatosalad]
298
+
299
+ ```ruby
300
+ index download_links: ->{ can?(:view_all_download_links) || [:pdf] }
301
+ ```
302
+
303
+ * Comments menu can be customized via configuration passed to `config.comments_menu`. [#4187] by [@drn]
304
+ * Added `config.route_options` to namespace to customize routes. [#4731] by [@stereoscott]
305
+
306
+ ### Security Fixes
307
+
308
+ * Prevents access to formats that the user not permitted to see. [#4867] by [@Fivell] and [@timoschilling]
309
+ * Prevents potential DOS attack via Ruby symbols. [#1926] by [@seanlinsley]
310
+ * [this isn't an issue for those using Ruby >= 2.2](http://rubykaigi.org/2014/presentation/S-NarihiroNakamura)
311
+
312
+ ### Bug Fixes
313
+
314
+ * Fixes filters for `has_many :through` relationships. [#2541] by [@shekibobo]
315
+ * "New" action item now only shows up on the index page. bf659bc by [@seanlinsley]
316
+ * Fixes comment creation bug with aliased resources. 9a082486 by [@seanlinsley]
317
+ * Fixes the deletion of `:if` and `:unless` from filters. [#2523] by [@PChambino]
318
+
319
+ ### Deprecations
320
+
321
+ * `ActiveAdmin::Event` (`ActiveAdmin::EventDispatcher`). [#3435] by [@timoschilling]
322
+ `ActiveAdmin::Event` will be removed in a future version, ActiveAdmin switched
323
+ to use `ActiveSupport::Notifications`
324
+ NOTE: The blog parameters has changed:
325
+
326
+ ```ruby
327
+ ActiveSupport::Notifications.subscribe ActiveAdmin::Application::BeforeLoadEvent do |event, *args|
328
+ # some code
329
+ end
330
+
331
+ ActiveSupport::Notifications.publish ActiveAdmin::Application::BeforeLoadEvent, "some data"
332
+ ```
333
+
334
+ * `action_item` without a name, to introduce a solution for removing action items (`remove_action_item(name)`). [#3091] by [@amiel]
335
+
336
+ ## Previous Changes
337
+
338
+ Please check [0-6-stable] for previous changes.
339
+
340
+ [0-6-stable]: https://github.com/activeadmin/activeadmin/blob/0-6-stable/CHANGELOG.md
341
+
342
+ [#1926]: https://github.com/activeadmin/activeadmin/issues/1926
343
+ [#1979]: https://github.com/activeadmin/activeadmin/issues/1979
344
+ [#2001]: https://github.com/activeadmin/activeadmin/issues/2001
345
+ [#2040]: https://github.com/activeadmin/activeadmin/issues/2040
346
+ [#2326]: https://github.com/activeadmin/activeadmin/issues/2326
347
+ [#2523]: https://github.com/activeadmin/activeadmin/issues/2523
348
+ [#2532]: https://github.com/activeadmin/activeadmin/issues/2532
349
+ [#2541]: https://github.com/activeadmin/activeadmin/issues/2541
350
+ [#2544]: https://github.com/activeadmin/activeadmin/issues/2544
351
+ [#2545]: https://github.com/activeadmin/activeadmin/issues/2545
352
+ [#3038]: https://github.com/activeadmin/activeadmin/issues/3038
353
+ [#3075]: https://github.com/activeadmin/activeadmin/issues/3075
354
+ [#3463]: https://github.com/activeadmin/activeadmin/issues/3463
355
+ [#3464]: https://github.com/activeadmin/activeadmin/issues/3464
356
+ [#3486]: https://github.com/activeadmin/activeadmin/issues/3486
357
+ [#3519]: https://github.com/activeadmin/activeadmin/issues/3519
358
+ [#3535]: https://github.com/activeadmin/activeadmin/issues/3535
359
+ [#3553]: https://github.com/activeadmin/activeadmin/issues/3553
360
+ [#3606]: https://github.com/activeadmin/activeadmin/issues/3606
361
+ [#3686]: https://github.com/activeadmin/activeadmin/issues/3686
362
+ [#3695]: https://github.com/activeadmin/activeadmin/issues/3695
363
+ [#3731]: https://github.com/activeadmin/activeadmin/issues/3731
364
+ [#3783]: https://github.com/activeadmin/activeadmin/issues/3783
365
+ [#3894]: https://github.com/activeadmin/activeadmin/issues/3894
366
+ [#4118]: https://github.com/activeadmin/activeadmin/issues/4118
367
+ [#4173]: https://github.com/activeadmin/activeadmin/issues/4173
368
+ [#4187]: https://github.com/activeadmin/activeadmin/issues/4187
369
+ [#4254]: https://github.com/activeadmin/activeadmin/issues/4254
370
+ [#5043]: https://github.com/activeadmin/activeadmin/issues/5043
371
+ [#5198]: https://github.com/activeadmin/activeadmin/issues/5198
372
+
373
+ [21b6138f]: https://github.com/activeadmin/activeadmin/pull/5740/commits/21b6138fdcf58cd54c3f1d3f60cb1127b174b40f
374
+
375
+ [#3091]: https://github.com/activeadmin/activeadmin/pull/3091
376
+ [#3435]: https://github.com/activeadmin/activeadmin/pull/3435
377
+ [#4477]: https://github.com/activeadmin/activeadmin/pull/4477
378
+ [#4731]: https://github.com/activeadmin/activeadmin/pull/4731
379
+ [#4759]: https://github.com/activeadmin/activeadmin/pull/4759
380
+ [#4768]: https://github.com/activeadmin/activeadmin/pull/4768
381
+ [#4848]: https://github.com/activeadmin/activeadmin/pull/4848
382
+ [#4851]: https://github.com/activeadmin/activeadmin/pull/4851
383
+ [#4867]: https://github.com/activeadmin/activeadmin/pull/4867
384
+ [#4870]: https://github.com/activeadmin/activeadmin/pull/4870
385
+ [#4882]: https://github.com/activeadmin/activeadmin/pull/4882
386
+ [#4940]: https://github.com/activeadmin/activeadmin/pull/4940
387
+ [#4950]: https://github.com/activeadmin/activeadmin/pull/4950
388
+ [#4951]: https://github.com/activeadmin/activeadmin/pull/4951
389
+ [#4989]: https://github.com/activeadmin/activeadmin/pull/4989
390
+ [#4996]: https://github.com/activeadmin/activeadmin/pull/4996
391
+ [#4997]: https://github.com/activeadmin/activeadmin/pull/4997
392
+ [#5003]: https://github.com/activeadmin/activeadmin/pull/5003
393
+ [#5029]: https://github.com/activeadmin/activeadmin/pull/5029
394
+ [#5037]: https://github.com/activeadmin/activeadmin/pull/5037
395
+ [#5044]: https://github.com/activeadmin/activeadmin/pull/5044
396
+ [#5046]: https://github.com/activeadmin/activeadmin/pull/5046
397
+ [#5052]: https://github.com/activeadmin/activeadmin/pull/5052
398
+ [#5060]: https://github.com/activeadmin/activeadmin/pull/5060
399
+ [#5069]: https://github.com/activeadmin/activeadmin/pull/5069
400
+ [#5081]: https://github.com/activeadmin/activeadmin/pull/5081
401
+ [#5088]: https://github.com/activeadmin/activeadmin/pull/5088
402
+ [#5093]: https://github.com/activeadmin/activeadmin/pull/5093
403
+ [#5099]: https://github.com/activeadmin/activeadmin/pull/5099
404
+ [#5104]: https://github.com/activeadmin/activeadmin/pull/5104
405
+ [#5119]: https://github.com/activeadmin/activeadmin/pull/5119
406
+ [#5120]: https://github.com/activeadmin/activeadmin/pull/5120
407
+ [#5125]: https://github.com/activeadmin/activeadmin/pull/5125
408
+ [#5137]: https://github.com/activeadmin/activeadmin/pull/5137
409
+ [#5143]: https://github.com/activeadmin/activeadmin/pull/5143
410
+ [#5157]: https://github.com/activeadmin/activeadmin/pull/5157
411
+ [#5167]: https://github.com/activeadmin/activeadmin/pull/5167
412
+ [#5180]: https://github.com/activeadmin/activeadmin/pull/5180
413
+ [#5187]: https://github.com/activeadmin/activeadmin/pull/5187
414
+ [#5194]: https://github.com/activeadmin/activeadmin/pull/5194
415
+ [#5208]: https://github.com/activeadmin/activeadmin/pull/5208
416
+ [#5210]: https://github.com/activeadmin/activeadmin/pull/5210
417
+ [#5223]: https://github.com/activeadmin/activeadmin/pull/5223
418
+ [#5238]: https://github.com/activeadmin/activeadmin/pull/5238
419
+ [#5240]: https://github.com/activeadmin/activeadmin/pull/5240
420
+ [#5251]: https://github.com/activeadmin/activeadmin/pull/5251
421
+ [#5253]: https://github.com/activeadmin/activeadmin/pull/5253
422
+ [#5266]: https://github.com/activeadmin/activeadmin/pull/5266
423
+ [#5272]: https://github.com/activeadmin/activeadmin/pull/5272
424
+ [#5275]: https://github.com/activeadmin/activeadmin/pull/5275
425
+ [#5284]: https://github.com/activeadmin/activeadmin/pull/5284
426
+ [#5295]: https://github.com/activeadmin/activeadmin/pull/5295
427
+ [#5299]: https://github.com/activeadmin/activeadmin/pull/5299
428
+ [#5320]: https://github.com/activeadmin/activeadmin/pull/5320
429
+ [#5324]: https://github.com/activeadmin/activeadmin/pull/5324
430
+ [#5330]: https://github.com/activeadmin/activeadmin/pull/5330
431
+ [#5334]: https://github.com/activeadmin/activeadmin/pull/5334
432
+ [#5336]: https://github.com/activeadmin/activeadmin/pull/5336
433
+ [#5341]: https://github.com/activeadmin/activeadmin/pull/5341
434
+ [#5343]: https://github.com/activeadmin/activeadmin/pull/5343
435
+ [#5357]: https://github.com/activeadmin/activeadmin/pull/5357
436
+ [#5359]: https://github.com/activeadmin/activeadmin/pull/5359
437
+ [#5368]: https://github.com/activeadmin/activeadmin/pull/5368
438
+ [#5370]: https://github.com/activeadmin/activeadmin/pull/5370
439
+ [#5375]: https://github.com/activeadmin/activeadmin/pull/5375
440
+ [#5376]: https://github.com/activeadmin/activeadmin/pull/5376
441
+ [#5399]: https://github.com/activeadmin/activeadmin/pull/5399
442
+ [#5401]: https://github.com/activeadmin/activeadmin/pull/5401
443
+ [#5408]: https://github.com/activeadmin/activeadmin/pull/5408
444
+ [#5413]: https://github.com/activeadmin/activeadmin/pull/5413
445
+ [#5417]: https://github.com/activeadmin/activeadmin/pull/5417
446
+ [#5418]: https://github.com/activeadmin/activeadmin/pull/5418
447
+ [#5433]: https://github.com/activeadmin/activeadmin/pull/5433
448
+ [#5446]: https://github.com/activeadmin/activeadmin/pull/5446
449
+ [#5448]: https://github.com/activeadmin/activeadmin/pull/5448
450
+ [#5453]: https://github.com/activeadmin/activeadmin/pull/5453
451
+ [#5458]: https://github.com/activeadmin/activeadmin/pull/5458
452
+ [#5461]: https://github.com/activeadmin/activeadmin/pull/5461
453
+ [#5464]: https://github.com/activeadmin/activeadmin/pull/5464
454
+ [#5486]: https://github.com/activeadmin/activeadmin/pull/5486
455
+ [#5501]: https://github.com/activeadmin/activeadmin/pull/5501
456
+ [#5504]: https://github.com/activeadmin/activeadmin/pull/5504
457
+ [#5517]: https://github.com/activeadmin/activeadmin/pull/5517
458
+ [#5537]: https://github.com/activeadmin/activeadmin/pull/5537
459
+ [#5555]: https://github.com/activeadmin/activeadmin/pull/5555
460
+ [#5583]: https://github.com/activeadmin/activeadmin/pull/5583
461
+ [#5608]: https://github.com/activeadmin/activeadmin/pull/5608
462
+ [#5611]: https://github.com/activeadmin/activeadmin/pull/5611
463
+ [#5627]: https://github.com/activeadmin/activeadmin/pull/5627
464
+ [#5631]: https://github.com/activeadmin/activeadmin/pull/5631
465
+ [#5632]: https://github.com/activeadmin/activeadmin/pull/5632
466
+ [#5650]: https://github.com/activeadmin/activeadmin/pull/5650
467
+ [#5590]: https://github.com/activeadmin/activeadmin/pull/5590
468
+ [#5662]: https://github.com/activeadmin/activeadmin/pull/5662
469
+ [#5710]: https://github.com/activeadmin/activeadmin/pull/5710
470
+ [#5726]: https://github.com/activeadmin/activeadmin/pull/5726
471
+ [#5738]: https://github.com/activeadmin/activeadmin/pull/5738
472
+ [#5740]: https://github.com/activeadmin/activeadmin/pull/5740
473
+ [#5751]: https://github.com/activeadmin/activeadmin/pull/5751
474
+ [#5758]: https://github.com/activeadmin/activeadmin/pull/5758
475
+ [#5777]: https://github.com/activeadmin/activeadmin/pull/5777
476
+ [#5794]: https://github.com/activeadmin/activeadmin/pull/5794
477
+ [#5801]: https://github.com/activeadmin/activeadmin/pull/5801
478
+ [#5802]: https://github.com/activeadmin/activeadmin/pull/5802
479
+
480
+ [@5t111111]: https://github.com/5t111111
481
+ [@aarek]: https://github.com/aarek
482
+ [@ajw725]: https://github.com/ajw725
483
+ [@alex-bogomolov]: https://github.com/alex-bogomolov
484
+ [@amiel]: https://github.com/amiel
485
+ [@amiuhle]: https://github.com/amiuhle
486
+ [@andreslemik]: https://github.com/andreslemik
487
+ [@blocknotes]: https://github.com/blocknotes
488
+ [@bolshakov]: https://github.com/bolshakov
489
+ [@buren]: https://github.com/buren
490
+ [@chancancode]: https://github.com/chancancode
491
+ [@chumakoff]: https://github.com/chumakoff
492
+ [@craigmcnamara]: https://github.com/craigmcnamara
493
+ [@DanielHeath]: https://github.com/DanielHeath
494
+ [@deivid-rodriguez]: https://github.com/deivid-rodriguez
495
+ [@dennisvdvliet]: https://github.com/dennisvdvliet
496
+ [@dhyegofernando]: https://github.com/dhyegofernando
497
+ [@dkniffin]: https://github.com/dkniffin
498
+ [@dmitry]: https://github.com/dmitry
499
+ [@drn]: https://github.com/drn
500
+ [@eikes]: https://github.com/eikes
501
+ [@f1sherman]: https://github.com/f1sherman
502
+ [@faucct]: https://github.com/faucct
503
+ [@Fivell]: https://github.com/Fivell
504
+ [@glebtv]: https://github.com/glebtv
505
+ [@gonzedge]: https://github.com/gonzedge
506
+ [@innparusu95]: https://github.com/innparusu95
507
+ [@ionut998]: https://github.com/ionut998
508
+ [@jasl]: https://github.com/jasl
509
+ [@javierjulio]: https://github.com/javierjulio
510
+ [@jawa]: https://github.com/jawa
511
+ [@JiiHu]: https://github.com/JiiHu
512
+ [@johnnyshields]: https://github.com/johnnyshields
513
+ [@kjeldahl]: https://github.com/kjeldahl
514
+ [@kobeumut]: https://github.com/kobeumut
515
+ [@kwent]: https://github.com/kwent
516
+ [@leio10]: https://github.com/leio10
517
+ [@markstory]: https://github.com/markstory
518
+ [@mauriciopasquier]: https://github.com/mauriciopasquier
519
+ [@mconiglio]: https://github.com/mconiglio
520
+ [@Nguyenanh]: https://github.com/Nguyenanh
521
+ [@PChambino]: https://github.com/PChambino
522
+ [@potatosalad]: https://github.com/potatosalad
523
+ [@pranas]: https://github.com/pranas
524
+ [@renotocn]: https://github.com/renotocn
525
+ [@RobinvanderVliet]: https://github.com/RobinvanderVliet
526
+ [@rogerkk]: https://github.com/rogerkk
527
+ [@seanlinsley]: https://github.com/seanlinsley
528
+ [@ShallmentMo]: https://github.com/ShallmentMo
529
+ [@shekibobo]: https://github.com/shekibobo
530
+ [@shouya]: https://github.com/shouya
531
+ [@stefsava]: https://github.com/stefsava
532
+ [@stereoscott]: https://github.com/stereoscott
533
+ [@tiagotex]: https://github.com/tiagotex
534
+ [@timoschilling]: https://github.com/timoschilling
535
+ [@TimPetricola]: https://github.com/TimPetricola
536
+ [@varyonic]: https://github.com/varyonic
537
+ [@wasifhossain]: https://github.com/wasifhossain
538
+ [@WaKeMaTTa]: https://github.com/WaKeMaTTa
539
+ [@Wowu]: https://github.com/Wowu
540
+ [@wspurgin]: https://github.com/wspurgin
541
+ [@zorab47]: https://github.com/zorab47
542
+ [@chrp]: https://github.com/chrp
543
+ [@bartoszkopinski]: https://github.com/bartoszkopinski
544
+ [@panasyuk]: https://github.com/panasyuk
545
+ [@jscheid]: https://github.com/jscheid
546
+ [@violeta-p]: https://github.com/violeta-p