activeadmin 0.6.6 → 1.0.0.pre1

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 (512) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +11 -8
  3. data/.hound.yml +11 -0
  4. data/.travis.yml +36 -10
  5. data/.yardopts +2 -1
  6. data/CHANGELOG.md +118 -67
  7. data/CONTRIBUTING.md +96 -73
  8. data/Gemfile +35 -35
  9. data/Guardfile +1 -0
  10. data/LICENSE +1 -1
  11. data/README.md +98 -0
  12. data/Rakefile +12 -4
  13. data/activeadmin.gemspec +21 -24
  14. data/app/assets/javascripts/active_admin/application.js.coffee +32 -0
  15. data/app/assets/javascripts/active_admin/base.js.coffee +14 -0
  16. data/app/assets/javascripts/active_admin/ext/jquery-ui.js.coffee +6 -0
  17. data/app/assets/javascripts/active_admin/ext/jquery.js.coffee +7 -0
  18. data/app/assets/javascripts/active_admin/lib/batch_actions.js.coffee +39 -0
  19. data/app/assets/javascripts/active_admin/{components/jquery.aa.checkbox-toggler.js.coffee → lib/checkbox-toggler.js.coffee} +3 -4
  20. data/app/assets/javascripts/active_admin/lib/dropdown-menu.js.coffee +101 -0
  21. data/app/assets/javascripts/active_admin/lib/flash.js.coffee +19 -0
  22. data/app/assets/javascripts/active_admin/lib/has_many.js.coffee +79 -0
  23. data/app/assets/javascripts/active_admin/lib/modal_dialog.js.coffee +37 -0
  24. data/app/assets/javascripts/active_admin/lib/per_page.js.coffee +27 -0
  25. data/app/assets/javascripts/active_admin/lib/popover.js.coffee +68 -0
  26. data/app/assets/javascripts/active_admin/{components/jquery.aa.table-checkbox-toggler.js.coffee → lib/table-checkbox-toggler.js.coffee} +2 -3
  27. data/app/assets/stylesheets/active_admin/{_base.css.scss → _base.scss} +3 -0
  28. data/app/assets/stylesheets/active_admin/{_forms.css.scss → _forms.scss} +61 -17
  29. data/app/assets/stylesheets/active_admin/{_header.css.scss → _header.scss} +9 -5
  30. data/app/assets/stylesheets/active_admin/{_mixins.css.scss → _mixins.scss} +0 -0
  31. data/app/assets/stylesheets/active_admin/{_typography.css.scss → _typography.scss} +0 -0
  32. data/app/assets/stylesheets/active_admin/components/_batch_actions.scss +11 -0
  33. data/app/assets/stylesheets/active_admin/components/_blank_slates.scss +0 -1
  34. data/app/assets/stylesheets/active_admin/components/_buttons.scss +1 -1
  35. data/app/assets/stylesheets/active_admin/components/{_comments.css.scss → _comments.scss} +0 -0
  36. data/app/assets/stylesheets/active_admin/components/{_date_picker.css.scss → _date_picker.scss} +40 -14
  37. data/app/assets/stylesheets/active_admin/components/_dropdown_menu.scss +5 -4
  38. data/app/assets/stylesheets/active_admin/components/_flash_messages.scss +37 -0
  39. data/app/assets/stylesheets/active_admin/components/_modal_dialog.scss +34 -0
  40. data/app/assets/stylesheets/active_admin/components/_pagination.scss +10 -0
  41. data/app/assets/stylesheets/active_admin/components/{_popovers.css.scss → _popovers.scss} +2 -3
  42. data/app/assets/stylesheets/active_admin/components/_status_tags.scss +4 -0
  43. data/app/assets/stylesheets/active_admin/components/_table_tools.scss +67 -0
  44. data/app/assets/stylesheets/active_admin/components/{_tables.css.scss → _tables.scss} +4 -2
  45. data/app/assets/stylesheets/active_admin/components/_tabs.scss +65 -0
  46. data/app/assets/stylesheets/active_admin/components/_unsupported_browser.scss +16 -0
  47. data/app/assets/stylesheets/active_admin/mixins/{_all.css.scss → _all.scss} +0 -0
  48. data/app/assets/stylesheets/active_admin/mixins/{_buttons.css.scss → _buttons.scss} +0 -1
  49. data/app/assets/stylesheets/active_admin/mixins/_gradients.scss +28 -0
  50. data/app/assets/stylesheets/active_admin/mixins/{_icons.css.scss → _icons.scss} +1 -2
  51. data/app/assets/stylesheets/active_admin/mixins/{_reset.css.scss → _reset.scss} +0 -0
  52. data/app/assets/stylesheets/active_admin/mixins/_rounded.scss +22 -0
  53. data/app/assets/stylesheets/active_admin/mixins/{_sections.css.scss → _sections.scss} +8 -2
  54. data/app/assets/stylesheets/active_admin/mixins/{_shadows.css.scss → _shadows.scss} +0 -7
  55. data/app/assets/stylesheets/active_admin/mixins/_utilities.scss +0 -9
  56. data/app/assets/stylesheets/active_admin/mixins/{_variables.css.scss → _variables.scss} +10 -8
  57. data/app/assets/stylesheets/active_admin/{print.css.scss → print.scss} +4 -0
  58. data/app/assets/stylesheets/active_admin/structure/_main_structure.scss +5 -2
  59. data/app/assets/stylesheets/active_admin/structure/_title_bar.scss +11 -9
  60. data/app/views/active_admin/devise/confirmations/new.html.erb +15 -0
  61. data/app/views/active_admin/devise/mailer/reset_password_instructions.html.erb +1 -1
  62. data/app/views/active_admin/devise/mailer/unlock_instructions.html.erb +1 -1
  63. data/app/views/active_admin/devise/passwords/edit.html.erb +9 -10
  64. data/app/views/active_admin/devise/passwords/new.html.erb +5 -4
  65. data/app/views/active_admin/devise/registrations/new.html.erb +22 -0
  66. data/app/views/active_admin/devise/sessions/new.html.erb +9 -7
  67. data/app/views/active_admin/devise/shared/_links.erb +1 -1
  68. data/app/views/active_admin/devise/unlocks/new.html.erb +5 -4
  69. data/app/views/layouts/active_admin_logged_out.html.erb +3 -5
  70. data/config/locales/ar.yml +120 -0
  71. data/config/locales/bg.yml +26 -6
  72. data/config/locales/bs.yml +122 -0
  73. data/config/locales/ca.yml +10 -1
  74. data/config/locales/cs.yml +7 -2
  75. data/config/locales/da.yml +7 -3
  76. data/config/locales/de-CH.yml +14 -31
  77. data/config/locales/de.yml +33 -33
  78. data/config/locales/el.yml +28 -2
  79. data/config/locales/en-GB.yml +12 -4
  80. data/config/locales/en.yml +29 -3
  81. data/config/locales/{es_MX.yml → es-MX.yml} +9 -24
  82. data/config/locales/es.yml +32 -25
  83. data/config/locales/fa.yml +120 -0
  84. data/config/locales/fi.yml +113 -0
  85. data/config/locales/fr.yml +21 -11
  86. data/config/locales/he.yml +7 -3
  87. data/config/locales/hr.yml +42 -11
  88. data/config/locales/hu.yml +10 -3
  89. data/config/locales/it.yml +31 -3
  90. data/config/locales/ja.yml +8 -3
  91. data/config/locales/ko.yml +7 -1
  92. data/config/locales/lt.yml +42 -11
  93. data/config/locales/lv.yml +7 -3
  94. data/config/locales/{no-NB.yml → nb.yml} +46 -15
  95. data/config/locales/nl.yml +36 -5
  96. data/config/locales/pl.yml +13 -8
  97. data/config/locales/pt-BR.yml +37 -5
  98. data/config/locales/pt-PT.yml +8 -4
  99. data/config/locales/ro.yml +7 -3
  100. data/config/locales/ru.yml +26 -5
  101. data/config/locales/sv-SE.yml +9 -5
  102. data/config/locales/tr.yml +10 -3
  103. data/config/locales/uk.yml +36 -12
  104. data/config/locales/vi.yml +7 -3
  105. data/config/locales/zh-CN.yml +26 -10
  106. data/config/locales/zh-TW.yml +19 -13
  107. data/docs/0-installation.md +65 -29
  108. data/docs/1-general-configuration.md +92 -81
  109. data/docs/10-custom-pages.md +68 -68
  110. data/docs/11-decorators.md +48 -59
  111. data/docs/12-arbre-components.md +80 -74
  112. data/docs/13-authorization-adapter.md +128 -107
  113. data/docs/14-gotchas.md +92 -0
  114. data/docs/2-resource-customization.md +293 -178
  115. data/docs/3-index-pages.md +160 -86
  116. data/docs/3-index-pages/custom-index.md +31 -0
  117. data/docs/3-index-pages/index-as-block.md +14 -9
  118. data/docs/3-index-pages/index-as-blog.md +41 -31
  119. data/docs/3-index-pages/index-as-grid.md +16 -8
  120. data/docs/3-index-pages/index-as-table.md +129 -52
  121. data/docs/4-csv-format.md +31 -24
  122. data/docs/5-forms.md +133 -56
  123. data/docs/6-show-pages.md +89 -27
  124. data/docs/7-sidebars.md +48 -27
  125. data/docs/8-custom-actions.md +98 -77
  126. data/docs/9-batch-actions.md +210 -146
  127. data/docs/README.md +24 -0
  128. data/features/action_item.feature +3 -3
  129. data/features/authorization_pundit.feature +37 -0
  130. data/features/breadcrumb.feature +48 -0
  131. data/features/comments/commenting.feature +56 -13
  132. data/features/development_reloading.feature +17 -30
  133. data/features/edit_page.feature +12 -1
  134. data/features/favicon.feature +3 -3
  135. data/features/i18n.feature +5 -4
  136. data/features/index/batch_actions.feature +41 -0
  137. data/features/index/filters.feature +67 -0
  138. data/features/index/format_as_csv.feature +90 -4
  139. data/features/index/formats.feature +27 -0
  140. data/features/index/index_as_blog.feature +4 -4
  141. data/features/index/index_as_table.feature +102 -6
  142. data/features/index/index_blank_slate.feature +22 -0
  143. data/features/index/index_scope_to.feature +16 -16
  144. data/features/index/page_title.feature +11 -0
  145. data/features/index/pagination.feature +1 -1
  146. data/features/index/switch_index_view.feature +14 -14
  147. data/features/new_page.feature +13 -2
  148. data/features/registering_pages.feature +1 -1
  149. data/features/renamed_resource.feature +32 -0
  150. data/features/show/page_title.feature +11 -0
  151. data/features/show/tabs.feature +27 -0
  152. data/features/sidebar_sections.feature +12 -0
  153. data/features/site_title.feature +2 -2
  154. data/features/specifying_actions.feature +3 -3
  155. data/features/step_definitions/action_item_steps.rb +2 -2
  156. data/features/step_definitions/action_link_steps.rb +14 -1
  157. data/features/step_definitions/additional_web_steps.rb +19 -20
  158. data/features/step_definitions/asset_steps.rb +3 -3
  159. data/features/step_definitions/attribute_steps.rb +8 -3
  160. data/features/step_definitions/batch_action_steps.rb +26 -9
  161. data/features/step_definitions/blog_steps.rb +3 -0
  162. data/features/step_definitions/breadcrumb_steps.rb +1 -1
  163. data/features/step_definitions/comment_steps.rb +1 -1
  164. data/features/step_definitions/configuration_steps.rb +9 -2
  165. data/features/step_definitions/dashboard_steps.rb +2 -2
  166. data/features/step_definitions/factory_steps.rb +9 -8
  167. data/features/step_definitions/filter_steps.rb +25 -3
  168. data/features/step_definitions/flash_steps.rb +3 -3
  169. data/features/step_definitions/format_steps.rb +18 -18
  170. data/features/step_definitions/index_scope_steps.rb +5 -5
  171. data/features/step_definitions/layout_steps.rb +1 -1
  172. data/features/step_definitions/member_link_steps.rb +2 -2
  173. data/features/step_definitions/menu_steps.rb +3 -3
  174. data/features/step_definitions/pagination_steps.rb +2 -3
  175. data/features/step_definitions/sidebar_steps.rb +8 -3
  176. data/features/step_definitions/site_title_steps.rb +6 -4
  177. data/features/step_definitions/symbol_leak_steps.rb +3 -0
  178. data/features/step_definitions/tab_steps.rb +5 -0
  179. data/features/step_definitions/table_steps.rb +4 -4
  180. data/features/step_definitions/user_steps.rb +10 -7
  181. data/features/step_definitions/web_steps.rb +14 -11
  182. data/features/sti_resource.feature +6 -2
  183. data/features/strong_parameters.feature +73 -0
  184. data/features/support/env.rb +34 -9
  185. data/features/support/paths.rb +14 -6
  186. data/features/support/selectors.rb +1 -1
  187. data/features/symbol_leak.feature +35 -0
  188. data/features/users/resetting_password.feature +5 -6
  189. data/lib/active_admin.rb +26 -25
  190. data/lib/active_admin/abstract_view_factory.rb +7 -17
  191. data/lib/active_admin/application.rb +72 -59
  192. data/lib/active_admin/asset_registration.rb +2 -2
  193. data/lib/active_admin/authorization_adapter.rb +2 -2
  194. data/lib/active_admin/base_controller.rb +2 -3
  195. data/lib/active_admin/base_controller/authorization.rb +13 -31
  196. data/lib/active_admin/batch_actions.rb +1 -1
  197. data/lib/active_admin/batch_actions/controller.rb +24 -8
  198. data/lib/active_admin/batch_actions/resource_extension.rb +47 -18
  199. data/lib/active_admin/batch_actions/views/batch_action_form.rb +7 -4
  200. data/lib/active_admin/batch_actions/views/batch_action_popover.rb +3 -3
  201. data/lib/active_admin/batch_actions/views/batch_action_selector.rb +8 -17
  202. data/lib/active_admin/batch_actions/views/selection_cells.rb +4 -4
  203. data/lib/active_admin/callbacks.rb +25 -24
  204. data/lib/active_admin/cancan_adapter.rb +7 -11
  205. data/lib/active_admin/csv_builder.rb +92 -15
  206. data/lib/active_admin/dependency.rb +93 -0
  207. data/lib/active_admin/deprecation.rb +6 -7
  208. data/lib/active_admin/devise.rb +28 -18
  209. data/lib/active_admin/dsl.rb +18 -11
  210. data/lib/active_admin/engine.rb +10 -8
  211. data/lib/active_admin/error.rb +62 -0
  212. data/lib/active_admin/filters/dsl.rb +2 -2
  213. data/lib/active_admin/filters/forms.rb +17 -27
  214. data/lib/active_admin/filters/formtastic_addons.rb +49 -15
  215. data/lib/active_admin/filters/resource_extension.rb +43 -34
  216. data/lib/active_admin/form_builder.rb +93 -154
  217. data/lib/active_admin/helpers/collection.rb +7 -13
  218. data/lib/active_admin/helpers/i18n.rb +7 -0
  219. data/lib/active_admin/helpers/optional_display.rb +5 -5
  220. data/lib/active_admin/helpers/routes/url_helpers.rb +15 -0
  221. data/lib/active_admin/helpers/scope_chain.rb +1 -1
  222. data/lib/active_admin/helpers/settings.rb +16 -9
  223. data/lib/active_admin/iconic.rb +17 -15
  224. data/lib/active_admin/iconic/icons.rb +136 -136
  225. data/lib/active_admin/inputs.rb +11 -7
  226. data/lib/active_admin/inputs/datepicker_input.rb +12 -3
  227. data/lib/active_admin/inputs/filters/base.rb +42 -0
  228. data/lib/active_admin/inputs/filters/base/search_method_select.rb +75 -0
  229. data/lib/active_admin/inputs/filters/boolean_input.rb +24 -0
  230. data/lib/active_admin/inputs/filters/check_boxes_input.rb +50 -0
  231. data/lib/active_admin/inputs/filters/date_range_input.rb +36 -0
  232. data/lib/active_admin/inputs/filters/numeric_input.rb +12 -0
  233. data/lib/active_admin/inputs/filters/select_input.rb +54 -0
  234. data/lib/active_admin/inputs/filters/string_input.rb +26 -0
  235. data/lib/active_admin/menu.rb +6 -4
  236. data/lib/active_admin/menu_collection.rb +1 -4
  237. data/lib/active_admin/namespace.rb +55 -29
  238. data/lib/active_admin/order_clause.rb +26 -0
  239. data/lib/active_admin/orm/active_record.rb +5 -0
  240. data/lib/active_admin/orm/active_record/comments.rb +81 -0
  241. data/lib/active_admin/orm/active_record/comments/comment.rb +45 -0
  242. data/lib/active_admin/{comments → orm/active_record/comments}/namespace_helper.rb +2 -2
  243. data/lib/active_admin/{comments → orm/active_record/comments}/resource_helper.rb +1 -1
  244. data/lib/active_admin/{comments → orm/active_record/comments}/show_page_helper.rb +0 -0
  245. data/lib/active_admin/orm/active_record/comments/views.rb +2 -0
  246. data/lib/active_admin/{comments → orm/active_record/comments}/views/active_admin_comments.rb +16 -14
  247. data/lib/active_admin/orm/mongoid.rb +1 -0
  248. data/lib/active_admin/orm/mongoid/.gitkeep +0 -0
  249. data/lib/active_admin/page.rb +7 -3
  250. data/lib/active_admin/page_dsl.rb +1 -1
  251. data/lib/active_admin/page_presenter.rb +2 -2
  252. data/lib/active_admin/pundit_adapter.rb +68 -0
  253. data/lib/active_admin/resource.rb +16 -17
  254. data/lib/active_admin/resource/action_items.rb +23 -18
  255. data/lib/active_admin/resource/belongs_to.rb +7 -3
  256. data/lib/active_admin/resource/controllers.rb +1 -0
  257. data/lib/active_admin/resource/includes.rb +12 -0
  258. data/lib/active_admin/resource/menu.rb +5 -5
  259. data/lib/active_admin/resource/naming.rb +27 -43
  260. data/lib/active_admin/resource/page_presenters.rb +1 -1
  261. data/lib/active_admin/resource/routes.rb +27 -11
  262. data/lib/active_admin/resource/scope_to.rb +7 -7
  263. data/lib/active_admin/resource/sidebars.rb +1 -0
  264. data/lib/active_admin/resource_controller.rb +6 -7
  265. data/lib/active_admin/resource_controller/data_access.rb +101 -93
  266. data/lib/active_admin/resource_controller/decorators.rb +91 -9
  267. data/lib/active_admin/resource_controller/streaming.rb +37 -0
  268. data/lib/active_admin/resource_dsl.rb +53 -10
  269. data/lib/active_admin/router.rb +7 -7
  270. data/lib/active_admin/scope.rb +6 -6
  271. data/lib/active_admin/sidebar_section.rb +10 -2
  272. data/lib/active_admin/version.rb +1 -1
  273. data/lib/active_admin/view_factory.rb +17 -17
  274. data/lib/active_admin/view_helpers.rb +0 -1
  275. data/lib/active_admin/view_helpers/auto_link_helper.rb +23 -12
  276. data/lib/active_admin/view_helpers/breadcrumb_helper.rb +4 -3
  277. data/lib/active_admin/view_helpers/display_helper.rb +30 -15
  278. data/lib/active_admin/view_helpers/download_format_links_helper.rb +21 -25
  279. data/lib/active_admin/view_helpers/fields_for.rb +4 -4
  280. data/lib/active_admin/view_helpers/flash_helper.rb +4 -3
  281. data/lib/active_admin/view_helpers/form_helper.rb +5 -9
  282. data/lib/active_admin/view_helpers/method_or_proc_helper.rb +6 -6
  283. data/lib/active_admin/views/action_items.rb +2 -2
  284. data/lib/active_admin/views/components/action_list_popover.rb +1 -1
  285. data/lib/active_admin/views/components/active_admin_form.rb +123 -0
  286. data/lib/active_admin/views/components/attributes_table.rb +63 -21
  287. data/lib/active_admin/views/components/blank_slate.rb +1 -1
  288. data/lib/active_admin/views/components/columns.rb +13 -7
  289. data/lib/active_admin/views/components/dropdown_menu.rb +6 -6
  290. data/lib/active_admin/views/components/index_list.rb +7 -7
  291. data/lib/active_admin/views/components/paginated_collection.rb +38 -20
  292. data/lib/active_admin/views/components/panel.rb +8 -2
  293. data/lib/active_admin/views/components/popover.rb +1 -1
  294. data/lib/active_admin/views/components/scopes.rb +5 -4
  295. data/lib/active_admin/views/components/sidebar_section.rb +3 -2
  296. data/lib/active_admin/views/components/site_title.rb +2 -2
  297. data/lib/active_admin/views/components/status_tag.rb +34 -11
  298. data/lib/active_admin/views/components/table_for.rb +90 -45
  299. data/lib/active_admin/views/components/tabs.rb +28 -0
  300. data/lib/active_admin/views/components/unsupported_browser.rb +11 -0
  301. data/lib/active_admin/views/footer.rb +3 -3
  302. data/lib/active_admin/views/header.rb +3 -3
  303. data/lib/active_admin/views/index_as_block.rb +10 -10
  304. data/lib/active_admin/views/index_as_blog.rb +45 -39
  305. data/lib/active_admin/views/index_as_grid.rb +14 -10
  306. data/lib/active_admin/views/index_as_table.rb +242 -129
  307. data/lib/active_admin/views/pages/base.rb +22 -18
  308. data/lib/active_admin/views/pages/form.rb +21 -11
  309. data/lib/active_admin/views/pages/index.rb +40 -35
  310. data/lib/active_admin/views/pages/layout.rb +1 -1
  311. data/lib/active_admin/views/pages/show.rb +4 -4
  312. data/lib/active_admin/views/tabbed_navigation.rb +7 -3
  313. data/lib/active_admin/views/title_bar.rb +10 -8
  314. data/lib/generators/active_admin/assets/assets_generator.rb +3 -28
  315. data/lib/generators/active_admin/assets/templates/{3.1/active_admin.css.scss → active_admin.css.scss} +0 -0
  316. data/lib/generators/active_admin/assets/templates/active_admin.js.coffee +1 -0
  317. data/lib/generators/active_admin/devise/devise_generator.rb +24 -26
  318. data/lib/generators/active_admin/install/install_generator.rb +8 -9
  319. data/lib/generators/active_admin/install/templates/active_admin.rb.erb +28 -26
  320. data/lib/generators/active_admin/install/templates/admin_user.rb.erb +12 -2
  321. data/lib/generators/active_admin/install/templates/dashboard.rb +4 -4
  322. data/lib/generators/active_admin/install/templates/migrations/create_active_admin_comments.rb +3 -3
  323. data/lib/generators/active_admin/page/USAGE +8 -0
  324. data/lib/generators/active_admin/page/page_generator.rb +12 -0
  325. data/lib/generators/active_admin/page/templates/page.rb +5 -0
  326. data/lib/generators/active_admin/resource/resource_generator.rb +3 -5
  327. data/lib/generators/active_admin/resource/templates/admin.rb +15 -0
  328. data/lib/ransack_ext.rb +12 -0
  329. data/script/local +2 -2
  330. data/script/travis_cache +107 -0
  331. data/spec/javascripts/coffeescripts/jquery.aa.flash.js.coffee +25 -0
  332. data/spec/javascripts/fixtures/flashes.html +2 -0
  333. data/spec/rails_helper.rb +154 -0
  334. data/spec/{integration → requests}/default_namespace_spec.rb +6 -6
  335. data/spec/{integration → requests}/javascript_spec.rb +5 -5
  336. data/spec/requests/memory_spec.rb +23 -0
  337. data/spec/requests/stylesheets_spec.rb +18 -0
  338. data/spec/spec_helper.rb +12 -173
  339. data/spec/support/detect_rails_version.rb +9 -17
  340. data/spec/support/rails_template.rb +64 -35
  341. data/spec/support/rails_template_with_data.rb +14 -14
  342. data/spec/support/templates/admin/stores.rb +5 -1
  343. data/spec/support/templates/policies/active_admin/comment_policy.rb +9 -0
  344. data/spec/support/templates/policies/active_admin/page_policy.rb +18 -0
  345. data/spec/support/templates/policies/admin_user_policy.rb +11 -0
  346. data/spec/support/templates/policies/application_policy.rb +45 -0
  347. data/spec/support/templates/policies/category_policy.rb +7 -0
  348. data/spec/support/templates/policies/post_policy.rb +15 -0
  349. data/spec/support/templates/policies/store_policy.rb +11 -0
  350. data/spec/support/templates/policies/user_policy.rb +11 -0
  351. data/spec/support/templates/post_decorator.rb +4 -46
  352. data/spec/unit/abstract_view_factory_spec.rb +16 -16
  353. data/spec/unit/action_builder_spec.rb +24 -18
  354. data/spec/unit/active_admin_spec.rb +2 -2
  355. data/spec/unit/application_spec.rb +33 -34
  356. data/spec/unit/asset_registration_spec.rb +25 -29
  357. data/spec/unit/authorization/authorization_adapter_spec.rb +10 -10
  358. data/spec/unit/authorization/controller_authorization_spec.rb +11 -11
  359. data/spec/unit/authorization/index_overriding_spec.rb +22 -0
  360. data/spec/unit/auto_link_spec.rb +43 -13
  361. data/spec/unit/batch_actions/resource_spec.rb +15 -14
  362. data/spec/unit/batch_actions/settings_spec.rb +18 -18
  363. data/spec/unit/belongs_to_spec.rb +28 -19
  364. data/spec/unit/cancan_adapter_spec.rb +8 -8
  365. data/spec/unit/comments_spec.rb +99 -39
  366. data/spec/unit/component_spec.rb +3 -3
  367. data/spec/unit/config_shared_examples.rb +10 -10
  368. data/spec/unit/controller_filters_spec.rb +23 -16
  369. data/spec/unit/csv_builder_spec.rb +165 -24
  370. data/spec/unit/dependency_spec.rb +135 -0
  371. data/spec/unit/devise_spec.rb +17 -37
  372. data/spec/unit/dsl_spec.rb +70 -9
  373. data/spec/unit/event_spec.rb +11 -11
  374. data/spec/unit/filters/filter_form_builder_spec.rb +207 -148
  375. data/spec/unit/filters/resource_spec.rb +60 -26
  376. data/spec/unit/form_builder_spec.rb +419 -145
  377. data/spec/unit/generators/install_spec.rb +23 -0
  378. data/spec/unit/helpers/collection_spec.rb +18 -18
  379. data/spec/unit/helpers/scope_chain_spec.rb +6 -6
  380. data/spec/unit/helpers/settings_spec.rb +4 -4
  381. data/spec/unit/i18n_spec.rb +12 -0
  382. data/spec/unit/menu_collection_spec.rb +14 -14
  383. data/spec/unit/menu_item_spec.rb +42 -42
  384. data/spec/unit/menu_spec.rb +20 -20
  385. data/spec/unit/namespace/authorization_spec.rb +8 -8
  386. data/spec/unit/namespace/register_page_spec.rb +11 -11
  387. data/spec/unit/namespace/register_resource_spec.rb +28 -30
  388. data/spec/unit/namespace_spec.rb +20 -20
  389. data/spec/unit/order_clause_spec.rb +81 -0
  390. data/spec/unit/page_controller_spec.rb +1 -1
  391. data/spec/unit/page_spec.rb +18 -12
  392. data/spec/unit/pretty_format_spec.rb +42 -14
  393. data/spec/unit/pundit_adapter_spec.rb +98 -0
  394. data/spec/unit/resource/action_items_spec.rb +15 -12
  395. data/spec/unit/resource/includes_spec.rb +21 -0
  396. data/spec/unit/resource/menu_spec.rb +1 -1
  397. data/spec/unit/resource/naming_spec.rb +35 -21
  398. data/spec/unit/resource/page_presenters_spec.rb +8 -8
  399. data/spec/unit/resource/pagination_spec.rb +6 -6
  400. data/spec/unit/resource/routes_spec.rb +10 -10
  401. data/spec/unit/resource/scopes_spec.rb +14 -7
  402. data/spec/unit/resource/sidebars_spec.rb +6 -6
  403. data/spec/unit/resource_collection_spec.rb +31 -38
  404. data/spec/unit/resource_controller/data_access_spec.rb +96 -30
  405. data/spec/unit/resource_controller/decorators_spec.rb +83 -0
  406. data/spec/unit/resource_controller/sidebars_spec.rb +7 -8
  407. data/spec/unit/resource_controller_spec.rb +73 -70
  408. data/spec/unit/resource_registration_spec.rb +12 -12
  409. data/spec/unit/resource_spec.rb +77 -42
  410. data/spec/unit/routing_spec.rb +39 -31
  411. data/spec/unit/scope_spec.rb +112 -30
  412. data/spec/unit/settings_spec.rb +51 -21
  413. data/spec/unit/view_factory_spec.rb +2 -3
  414. data/spec/unit/view_helpers/breadcrumbs_spec.rb +71 -60
  415. data/spec/unit/view_helpers/display_name_spec.rb +49 -21
  416. data/spec/unit/view_helpers/download_format_links_helper_spec.rb +5 -5
  417. data/spec/unit/view_helpers/fields_for_spec.rb +18 -18
  418. data/spec/unit/view_helpers/flash_helper_spec.rb +25 -0
  419. data/spec/unit/view_helpers/form_helper_spec.rb +10 -23
  420. data/spec/unit/view_helpers/method_or_proc_helper_spec.rb +64 -22
  421. data/spec/unit/views/components/action_list_popover_spec.rb +16 -6
  422. data/spec/unit/views/components/attributes_table_spec.rb +171 -30
  423. data/spec/unit/views/components/batch_action_popover_spec.rb +20 -6
  424. data/spec/unit/views/components/blank_slate_spec.rb +14 -4
  425. data/spec/unit/views/components/columns_spec.rb +52 -22
  426. data/spec/unit/views/components/index_list_spec.rb +11 -8
  427. data/spec/unit/views/components/index_table_for_spec.rb +46 -0
  428. data/spec/unit/views/components/paginated_collection_spec.rb +79 -90
  429. data/spec/unit/views/components/panel_spec.rb +32 -21
  430. data/spec/unit/views/components/popover_spec.rb +7 -7
  431. data/spec/unit/views/components/sidebar_section_spec.rb +18 -8
  432. data/spec/unit/views/components/site_title_spec.rb +26 -26
  433. data/spec/unit/views/components/status_tag_spec.rb +178 -38
  434. data/spec/unit/views/components/table_for_spec.rb +237 -35
  435. data/spec/unit/views/components/tabs_spec.rb +39 -0
  436. data/spec/unit/views/components/unsupported_browser_spec.rb +47 -0
  437. data/spec/unit/views/pages/form_spec.rb +17 -10
  438. data/spec/unit/views/pages/index_spec.rb +60 -0
  439. data/spec/unit/views/pages/layout_spec.rb +17 -21
  440. data/spec/unit/views/pages/show_spec.rb +18 -6
  441. data/spec/unit/views/tabbed_navigation_spec.rb +61 -52
  442. data/tasks/docs.rake +9 -11
  443. data/tasks/parallel_tests.rake +8 -2
  444. data/tasks/test.rake +13 -9
  445. data/tasks/yard.rake +7 -4
  446. metadata +219 -163
  447. data/.document +0 -5
  448. data/README.rdoc +0 -88
  449. data/app/assets/images/active_admin/admin_notes_icon.png +0 -0
  450. data/app/assets/images/active_admin/datepicker/datepicker-header-bg.png +0 -0
  451. data/app/assets/images/active_admin/datepicker/datepicker-next-link-icon.png +0 -0
  452. data/app/assets/images/active_admin/datepicker/datepicker-nipple.png +0 -0
  453. data/app/assets/images/active_admin/datepicker/datepicker-prev-link-icon.png +0 -0
  454. data/app/assets/images/active_admin/index_list_icons/block_icon.svg +0 -10
  455. data/app/assets/images/active_admin/index_list_icons/blog_icon.svg +0 -4
  456. data/app/assets/images/active_admin/index_list_icons/grid_icon.svg +0 -13
  457. data/app/assets/images/active_admin/index_list_icons/table_icon.svg +0 -3
  458. data/app/assets/images/active_admin/loading.gif +0 -0
  459. data/app/assets/javascripts/active_admin/application.js +0 -3
  460. data/app/assets/javascripts/active_admin/base.js +0 -5
  461. data/app/assets/javascripts/active_admin/components/jquery.aa.dropdown-menu.js.coffee +0 -105
  462. data/app/assets/javascripts/active_admin/components/jquery.aa.popover.js.coffee +0 -97
  463. data/app/assets/javascripts/active_admin/lib/namespace.js.coffee +0 -4
  464. data/app/assets/javascripts/active_admin/pages/application.js.coffee +0 -21
  465. data/app/assets/javascripts/active_admin/pages/batch_actions.js.coffee +0 -26
  466. data/app/assets/stylesheets/active_admin/components/_batch_actions.css.scss +0 -11
  467. data/app/assets/stylesheets/active_admin/components/_flash_messages.css.scss +0 -41
  468. data/app/assets/stylesheets/active_admin/components/_table_tools.css.scss +0 -95
  469. data/app/assets/stylesheets/active_admin/mixins/_gradients.css.scss +0 -38
  470. data/app/assets/stylesheets/active_admin/mixins/_rounded.css.scss +0 -43
  471. data/app/views/active_admin/dashboard/index.html.arb +0 -1
  472. data/app/views/active_admin/resource/index.csv.erb +0 -23
  473. data/docs/3-index-pages/create-an-index.md +0 -29
  474. data/lib/active_admin/comments.rb +0 -83
  475. data/lib/active_admin/comments/comment.rb +0 -42
  476. data/lib/active_admin/comments/views.rb +0 -2
  477. data/lib/active_admin/dependency_checker.rb +0 -46
  478. data/lib/active_admin/inputs/filter_base.rb +0 -33
  479. data/lib/active_admin/inputs/filter_base/search_method_select.rb +0 -73
  480. data/lib/active_admin/inputs/filter_boolean_input.rb +0 -36
  481. data/lib/active_admin/inputs/filter_check_boxes_input.rb +0 -40
  482. data/lib/active_admin/inputs/filter_date_range_input.rb +0 -34
  483. data/lib/active_admin/inputs/filter_numeric_input.rb +0 -10
  484. data/lib/active_admin/inputs/filter_select_input.rb +0 -49
  485. data/lib/active_admin/inputs/filter_string_input.rb +0 -24
  486. data/lib/active_admin/reloader.rb +0 -130
  487. data/lib/active_admin/resource_controller/actions.rb +0 -81
  488. data/lib/active_admin/sass/active_admin.scss +0 -3
  489. data/lib/active_admin/sass/css_loader.rb +0 -16
  490. data/lib/active_admin/sass/helpers.rb +0 -45
  491. data/lib/active_admin/view_helpers/assigns_with_indifferent_access_helper.rb +0 -7
  492. data/lib/active_admin/views/dashboard_section_renderer.rb +0 -19
  493. data/lib/active_admin/views/pages/dashboard.rb +0 -62
  494. data/lib/generators/active_admin/assets/templates/3.0/active_admin.js +0 -1
  495. data/lib/generators/active_admin/assets/templates/3.1/active_admin.js +0 -1
  496. data/lib/meta_search_ext.rb +0 -10
  497. data/spec/integration/memory_spec.rb +0 -29
  498. data/spec/integration/stylesheets_spec.rb +0 -41
  499. data/spec/javascripts/compiled/jquery.aa.checkbox-toggler-spec.js +0 -60
  500. data/spec/javascripts/compiled/jquery.aa.popover-spec.js +0 -106
  501. data/spec/javascripts/compiled/jquery.aa.table-checkbox-toggler-spec.js +0 -37
  502. data/spec/javascripts/helpers/vendor/jasmine-fixture-0.0.5.js +0 -108
  503. data/spec/javascripts/helpers/vendor/jasmine-jquery.js +0 -288
  504. data/spec/javascripts/helpers/vendor/sinon-1.2.0.js +0 -2915
  505. data/spec/javascripts/support/jquery-ui-1.8.16.custom.min.js +0 -34
  506. data/spec/javascripts/support/jquery.min.js +0 -4
  507. data/spec/spec_helper_without_rails.rb +0 -11
  508. data/spec/unit/generators/install_rails_3_1_spec.rb +0 -16
  509. data/spec/unit/rails_spec.rb +0 -43
  510. data/spec/unit/reloader_spec.rb +0 -124
  511. data/spec/unit/sass/helpers_spec.rb +0 -47
  512. data/tasks/js.rake +0 -32
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 45c6ee86f21893e01b4a7da95f87eff301071cd6
4
- data.tar.gz: 40ab9df25f437e685017a6f9d8794ad5e5b6f08e
3
+ metadata.gz: a211db7f47f8419c4a5061d4095b4993a8966bee
4
+ data.tar.gz: 30850707302167c106b7b49f9937109e130554ed
5
5
  SHA512:
6
- metadata.gz: 7605bc8de9525538dc8cc5125145857530be95830abbd55ff25d8243a2431c7d943d718f6d08cea1742a472a2ab81db2e130be918dce45ef21a549efee2c0a90
7
- data.tar.gz: f7160c208b717e869584cb20b499605510d4d288683afbe685a3c11a5ef9bbaf997b3ceaf7cb1378ced949b51fa7d089779840134ac54547edd85bf499d82b41
6
+ metadata.gz: 7da439d34baca768e9c35ec94db02a3484642a60dea862585e0dec754f5832443585b367cc43a28af8897d3b1f7e6c560c0646145824df94fee65ad8b9945a42
7
+ data.tar.gz: 46f2fe5fae8db2457b1fdf3540010d74ed99e234180f766c098b6f712f54d2d5555eae23c4ffaeee01a4c877cdc2460f587bd694a6bbcbd157be5d015d47b2ab
data/.gitignore CHANGED
@@ -1,17 +1,20 @@
1
- ## MAC OS
1
+ ## Mac
2
2
  .DS_Store
3
3
 
4
- ## TEXTMATE
4
+ ## Windows
5
+ .Thumbs.db
6
+
7
+ ## TextMate
5
8
  *.tm_project
6
9
  *.tmproj
7
10
  tmtags
8
11
 
9
- ## EMACS
12
+ ## Emacs
10
13
  *~
11
14
  \#*
12
15
  .\#*
13
16
 
14
- ## VIM
17
+ ## Vim
15
18
  *.swp
16
19
  # IDEA / RUBYMINE
17
20
  .idea
@@ -21,7 +24,7 @@ tmtags
21
24
  .ruby-version
22
25
  .ruby-gemset
23
26
 
24
- ## PROJECT::GENERAL
27
+ ## Project (general)
25
28
  tags
26
29
  coverage
27
30
  rdoc
@@ -29,7 +32,8 @@ doc
29
32
  .yardoc
30
33
  pkg
31
34
 
32
- ## PROJECT::SPECIFIC
35
+ ## Project (specific)
36
+ bin/
33
37
  .bundle
34
38
  spec/rails
35
39
  *.sqlite3-journal
@@ -42,5 +46,4 @@ public
42
46
  .rspec
43
47
  .rails-version
44
48
  .rbenv-version
45
- # for easy switching between master and 0-6-stable
46
- .localeapp
49
+ .localeapp/*
@@ -0,0 +1,11 @@
1
+ ruby:
2
+ enabled: true
3
+
4
+ coffee_script:
5
+ enabled: true
6
+
7
+ java_script:
8
+ enabled: true
9
+
10
+ scss:
11
+ enabled: true
@@ -1,16 +1,42 @@
1
- script: bundle exec rake test
1
+ language: ruby
2
+ install:
3
+ - time ./script/travis_cache download_bundle
4
+ - time gem install bundler # use the very latest Bundler
5
+ - time bundle install --without development --path=./bundle
6
+ - bundle clean # delete now-outdated gems
7
+ - time ./script/travis_cache download_app
8
+ - time bundle exec rake setup
9
+ - time ./script/travis_cache upload
10
+ script:
11
+ - time bundle exec rake test_with_coveralls
2
12
  rvm:
3
- - 1.9.3
13
+ - 1.9
14
+ - 2.1
4
15
  - 2.2
5
- before_install:
6
- - gem update --system
7
- - gem --version
8
- - gem install bundler
9
16
  env:
10
- - RAILS=3.0.20
11
- - RAILS=3.1.12
12
- - RAILS=3.2.14
17
+ matrix:
18
+ - "RAILS=3.2.21"
19
+ - "RAILS=4.1.8"
20
+ - "RAILS=4.2.0"
21
+ global:
22
+ secure: lRYUGVUV94eqrR7C0b0hhvp+W76NkLRAn6jkJGCbRCEojbeb3HlgK1P+nTDeIuiDmXksJOG6VD3ZiZAn9Plznj7I/MFh+ijgvk8eWj9QNxA8riaSEPAu5VYtPA+uaw1olUt196U3qXH+SaXB4sx5wdIUXpd9qxWWWsW11ia0Jzs=
13
23
  matrix:
24
+ fast_finish: true
25
+ allow_failures:
26
+ - env: "RAILS=4.2.0"
14
27
  exclude:
15
28
  - rvm: 2.2
16
- env: RAILS=3.0.20
29
+ env: "RAILS=3.2.21"
30
+ - rvm: 2.1
31
+ env: "RAILS=4.1.8"
32
+ - rvm: 2.1
33
+ env: "RAILS=4.2.0"
34
+ notifications:
35
+ irc:
36
+ channels:
37
+ - "irc.freenode.org#activeadmin"
38
+ on_success: change
39
+ on_failure: always
40
+ skip_join: true
41
+ template:
42
+ - "(%{branch}/%{commit} by %{author}): %{message} (%{build_url})"
data/.yardopts CHANGED
@@ -1,7 +1,8 @@
1
1
  lib/**/*.rb
2
2
  --protected
3
3
  --no-private
4
+ --exclude (features|lib\/generators\/active_admin\/.*\/templates)
4
5
  -
5
- README.rdoc
6
+ README.md
6
7
  CHANGELOG.md
7
8
  docs/**/*.md
@@ -1,22 +1,58 @@
1
- ## 0-6-stable (unreleased) - [compare](https://github.com/gregbell/active_admin/compare/v0.6.6...0-6-stable)
1
+ ## 1.0.0 [](https://github.com/activeadmin/activeadmin/compare/v0.6.3...master) (unreleased)
2
2
 
3
- ## 0.6.6 - [compare](https://github.com/gregbell/active_admin/compare/v0.6.5...v0.6.6)
3
+ ### Breaking Changes
4
4
 
5
- * Backport of [#3779][] from [@aaronsakowski][] by [@timoschilling][]
6
- * Fix issue with model attribute matching metasearch method name [#3698][] by [@azach][]
7
- * Fix default delete prompt on Rails 3.0.x [#3765][] by [@craigmcnamara][]
5
+ * Rename `allow_comments` to `comments` for more consistent naming [#3695][] by [@pranas][]
6
+ * JavaScript `window.AA` has been removed, use `window.ActiveAdmin` [#3606][] by [@timoschilling][]
7
+ * `f.form_buffers` has been removed [#3486][] by [@varyonic][]
8
8
 
9
- ## 0.6.5 - [compare](https://github.com/gregbell/active_admin/compare/v0.6.4...v0.6.5)
9
+ ### Enhancements
10
10
 
11
- * Backport of [#2715][] by [@timoschilling][]
11
+ #### Major
12
+
13
+ * Migration from Metasearch to Ransack [#1979][] by [@seanlinsley][]
14
+ * Rails 4 support [#2326][] by many people <3
15
+ * Rails 4.2 support [#3731][] by [@gonzedge][] and [@timoschilling][]
16
+
17
+ #### Minor
18
+
19
+ * Do not auto link to inaccessible actions [#3686][] by [@pranas][]
20
+ * Allow to enable comments on per-resource basis [#3695][] by [@pranas][]
21
+ * Unify DSL for index `actions` and `actions dropdown: true` [#3463][] by [@timoschilling][]
22
+ * Add DSL method `includes` for `ActiveRecord::Relation#includes` [#3464][] by [@timoschilling][]
23
+ * BOM (byte order mark) configurable for CSV download [#3519][] by [@timoschilling][]
24
+ * Column block on table index is now sortable by default [#3075][] by [@dmitry][]
25
+ * Allow Arbre to be used inside ActiveAdmin forms [#3486][] by [@varyonic][]
26
+ * Make AA ORM-agnostic [#2545][] by [@johnnyshields][]
27
+ * Add multi-record support to `attributes_table_for` [#2544][] by [@zorab47][]
28
+ * Table CSS classes are now prefixed to prevent clashes [#2532][] by [@TimPetricola][]
29
+ * Allow Inherited Resources shorthand for redirection [#2001][] by [@seanlinsley][]
30
+ ```ruby
31
+ controller do
32
+ # Redirects to index page instead of rendering updated resource
33
+ def update
34
+ update!{ collection_path }
35
+ end
36
+ end
37
+ ```
12
38
 
13
- ## 0.6.4 - [compare](https://github.com/gregbell/active_admin/compare/v0.6.3...v0.6.4)
39
+ * Accept block for download links [#2040][] by [@potatosalad][]
40
+ ```ruby
41
+ index download_links: ->{ can?(:view_all_download_links) || [:pdf] }
42
+ ```
43
+
44
+ ### Security Fixes
45
+
46
+ * Prevents potential DOS attack via Ruby symbols [#1926][] by [@seanlinsley][]
47
+
48
+ ### Bug Fixes
14
49
 
15
- * Restore compatibility with Formtastic 2.0 by [@seanlinsley][]
16
- * Backport of [#3489][] by [@timoschilling][]
17
- * Backport of [#3659][] by [@timoschilling][]
50
+ * Fixes filters for `has_many :through` relationships [#2541][] by [@shekibobo][]
51
+ * "New" action item now only shows up on the index page bf659bc by [@seanlinsley][]
52
+ * Fixes comment creation bug with aliased resources 9a082486 by [@seanlinsley][]
53
+ * Fixes the deletion of `:if` and `:unless` from filters [#2523][] by [@PChambino][]
18
54
 
19
- ## 0.6.3 - [compare](https://github.com/gregbell/active_admin/compare/v0.6.2...v0.6.3)
55
+ ## 0.6.3 [](https://github.com/activeadmin/activeadmin/compare/v0.6.2...v0.6.3)
20
56
 
21
57
  * __Reinstitutes the 10k limit for CSV exports__ [#2847][] by [@seanlinsley][]
22
58
  * Blacklists Devise versions vulnerable to CVE-2013-0233 [#2744][] by [@jjarmoc][]
@@ -27,18 +63,18 @@
27
63
  * Keeps filter conditions from being deleted fa0edec4 by [@seanlinsley][]
28
64
  * Translations by [@teoulas][], [@tricknotes][], [@givanse][], and [@pcreux][] :heart:
29
65
 
30
- ## 0.6.2 - [compare](https://github.com/gregbell/active_admin/compare/v0.6.1...v0.6.2)
66
+ ## 0.6.2 [](https://github.com/activeadmin/activeadmin/compare/v0.6.1...v0.6.2)
31
67
 
32
68
  * Patches MetaSearch bug for attributes ending in "ne" d5db9ff4 by [@seanlinsley][]
33
69
 
34
- ## 0.6.1 - [compare](https://github.com/gregbell/active_admin/compare/v0.6.0...v0.6.1)
70
+ ## 0.6.1 [](https://github.com/activeadmin/activeadmin/compare/v0.6.0...v0.6.1)
35
71
 
36
72
  ### Features
37
73
 
38
74
  * OmniAuth provider links now automatically appear on the login page [#2088][] by [@henrrrik][]
39
75
  * Menu items can now properly overflow [#2046][] by [@maax][]; later updated in [#2125][] by [@ball-hayden][]
40
76
  * Favicon support [#2348][] by [@stereoscott][]
41
- * HABTM filters [#1928][] by [@Daxter][]
77
+ * HABTM filters [#1928][] by [@seanlinsley][]
42
78
  ```ruby
43
79
  # (assuming Foo HABTM Bars)
44
80
  ActiveAdmin.register Foo do
@@ -46,9 +82,9 @@
46
82
  end
47
83
  ```
48
84
 
49
- * Advanced string filters [#2096][] by [@joseluistorres][]; later updated in [#2228][] by [@Daxter][]
50
- * Select filters now respect custom MetaSerch search methods [#2420][] by [@Daxter][]
51
- * The navbar now links to the current user's profile [#2395][] by [@Daxter][]
85
+ * Advanced string filters [#2096][] by [@joseluistorres][]; later updated in [#2228][] by [@seanlinsley][]
86
+ * Select filters now respect custom MetaSerch search methods [#2420][] by [@seanlinsley][]
87
+ * The navbar now links to the current user's profile [#2395][] by [@seanlinsley][]
52
88
 
53
89
  ### Bug Fixes
54
90
 
@@ -56,23 +92,23 @@
56
92
  * Fixes problem where extra `/` route was being generated [#2062][] by [@jbhannah][]
57
93
  * `IndexAsBlog` now renders title/body procs in the view context [#2087][] by [@macfanatic][]
58
94
  * Fixes `route_instance_path` for `belongs_to` resources [#2099][] by [@pcreux][]
59
- * Fixes breadcrumb links for `belongs_to` resources [#2090][] by [@Daxter][]
95
+ * Fixes breadcrumb links for `belongs_to` resources [#2090][] by [@seanlinsley][]
60
96
  * Fixes ID regression, again using `to_param` [#2175][] by [@cknoxrun][]
61
- * Fixes `check_box_checked?` bug [#2186][] by [@Daxter][]; later updated in [#2221][] by [@dmfrancisco][]
62
- * Ensures that assets can only be registered once [#2139][] by [@Daxter][]
97
+ * Fixes `check_box_checked?` bug [#2186][] by [@seanlinsley][]; later updated in [#2221][] by [@dmfrancisco][]
98
+ * Ensures that assets can only be registered once [#2139][] by [@seanlinsley][]
63
99
  * Makes breadcrumbs respect the decorator [#2315][] by [@amiel][]
64
- * CSV download links now respect pagination [#2419][] by [@Daxter][]
100
+ * CSV download links now respect pagination [#2419][] by [@seanlinsley][]
65
101
  * Panels no longer escape html-safe entities [#2403][] by [@zorab47][]
66
102
 
67
103
  ### Enhancements
68
104
 
69
105
  * Adds option to "undecorate" resource when building forms [#2085][] by [@amiel][]
70
106
  * Adds `:pagination_total` option to index to hide count for large databases [#2333][] by [@joseluistorres][]
71
- * Adds [better_errors](https://github.com/charliesome/better_errors) gem for a better AA development experience [#2095][] by [@Daxter][]
107
+ * Adds [better_errors](https://github.com/charliesome/better_errors) gem for a better AA development experience [#2095][] by [@seanlinsley][]
72
108
  * Scopes now support blocks for the `:default` option [#2084][] by [@macfanatic][]
73
109
  * `:if` and `:unless` options added to `scope_to` [#2089][] by [@macfanatic][]
74
110
  * Renames Comment to AdminComment [#2060][] by [@jbhannah][]; later replaced by [#2113][]
75
- * Improves Comments UI and adds config settings [#2113][] by [@Daxter][]
111
+ * Improves Comments UI and adds config settings [#2113][] by [@seanlinsley][]
76
112
  ```ruby
77
113
  config.show_comments_in_menu = false # Defaults to true
78
114
  config.comments_registration_name = 'AdminComment' # Defaults to 'Comment'
@@ -90,30 +126,30 @@
90
126
  * Ukrainian locale added [#2258][] by [@valdemarua][]
91
127
  * Mexican Spanish locale added [#2319][] by [@neoriddle][]
92
128
  * Japanese locale updated [#2416][] by [@nappa][]
93
- * move filter translation into `SearchMethodSelect` [#2231][] by [@Daxter][]
129
+ * move filter translation into `SearchMethodSelect` [#2231][] by [@seanlinsley][]
94
130
  * fix plural translations for default `batch_action` [#2255][] by [@mindhalt][]
95
131
  * In development, load each individual AA JS file [#2215][] by [@tank-bohr][]
96
132
  * Removes Railtie, only using Rails Engine [#2162][] by [@jherdman][]
97
- * Excludes associations from `display_name` helper [#2147][] by [@Daxter][]
98
- * Prevents new AA::Application instances from using the same `namespace` hash [#2313][] by [@Daxter][]
133
+ * Excludes associations from `display_name` helper [#2147][] by [@seanlinsley][]
134
+ * Prevents new AA::Application instances from using the same `namespace` hash [#2313][] by [@seanlinsley][]
99
135
  * Moves hard-coded SASS colors into variables [#2454][] by [@ilyakatz][]
100
136
 
101
137
  ### Cleanup
102
138
 
103
- * Cucumber step definitions refactor [#2015][] by [@Daxter][]
104
- * Misc cleanup in [#2075][] and [#2107][] by [@Daxter][]
139
+ * Cucumber step definitions refactor [#2015][] by [@seanlinsley][]
140
+ * Misc cleanup in [#2075][] and [#2107][] by [@seanlinsley][]
105
141
  * Removes messy spacing from `AdminUser` generator file [#2058][] by [@lupinglade][]
106
142
  * Fixes documentation formatting [#2083][] by [@amiel][]
107
- * Deprecated settings & code removed [#2165][] by [@Daxter][]
143
+ * Deprecated settings & code removed [#2165][] by [@seanlinsley][]
108
144
 
109
- ## 0.6.0 - [compare](https://github.com/gregbell/active_admin/compare/v0.5.1...v0.6.0)
145
+ ## 0.6.0 [](https://github.com/activeadmin/activeadmin/compare/v0.5.1...v0.6.0)
110
146
 
111
147
  ### Bug Fixes
112
148
 
113
149
  * Fix conflict with Redcloth [#1805][] by [@adrienkohlbecker][]
114
150
  * Add missing batch actions translations. [#1788][] by [@EtienneDepaulis][]
115
151
  * JS fix for batch actions checkbox toggling [#1947][] by [@ai][]
116
- * Fixed routing bug for root namespace [#2043][] by [@Daxter][] and [@gregbell][]
152
+ * Fixed routing bug for root namespace [#2043][] by [@seanlinsley][] and [@gregbell][]
117
153
 
118
154
  ### Enhancements
119
155
 
@@ -125,13 +161,13 @@
125
161
  * Devise lockable module now supported by default [#1933][] by [@Bishop][]
126
162
  * Index table now uses a unique DOM id (`#index_table_posts` instead of `#posts`) [#1966][] by [@TiagoCardoso1983][]
127
163
  * Coffeescript 1.5 compatability as constructors no longer return a value [#1940][] by [@ronen][]
128
- * Allow options to be passed to the Abre element for rows in `attributes_table` [#1439][] by [@Daxter][]
164
+ * Allow options to be passed to the Abre element for rows in `attributes_table` [#1439][] by [@seanlinsley][]
129
165
  * Gender neutral Spanish translations [#1973][] by [@laffinkippah][]
130
166
  * Adds the ability to use `starts_with` and `ends_with` in string filters [#1962][] by [@rmw][]
131
- * Adds support for translating resources when registered with `:as` [#2044][] by [@Daxter][]
132
- * Scopes are no longer hidden when empty filter results [#1804][] by [@Daxter][]
133
- * Dynamic scope names with procs [#2018][] by [@Daxter][]
134
- * Filters now support the `:if` optional argument [#1801][] by [@Daxter][]
167
+ * Adds support for translating resources when registered with `:as` [#2044][] by [@seanlinsley][]
168
+ * Scopes are no longer hidden when empty filter results [#1804][] by [@seanlinsley][]
169
+ * Dynamic scope names with procs [#2018][] by [@seanlinsley][]
170
+ * Filters now support the `:if` optional argument [#1801][] by [@seanlinsley][]
135
171
  * Member & collection actions support multiple HTTP methods for the same action [#2000][] by [@rdsoze][]
136
172
 
137
173
  ### Features
@@ -162,7 +198,7 @@
162
198
  * Bartlomiej Niemtur
163
199
  * David DIDIER
164
200
  * David Reese
165
- * Daxter
201
+ * Sean Linsley
166
202
  * Dirkjan Bussink
167
203
  * Dominik Masur
168
204
  * Eric Cumbee
@@ -186,7 +222,6 @@
186
222
  * Roman Sklenář
187
223
  * Ryan Schlesinger
188
224
  * Scott Meves
189
- * Sean Ian Linsley
190
225
  * Sergey Pchelincev
191
226
  * Simon Menke
192
227
  * Tiago Cardoso
@@ -196,14 +231,14 @@
196
231
  * ronen barzel
197
232
  * тιηуηυмвєяѕ
198
233
 
199
- ## 0.5.1 - [compare](https://github.com/gregbell/active_admin/compare/v0.5.0...v0.5.1)
234
+ ## 0.5.1 [](https://github.com/activeadmin/activeadmin/compare/v0.5.0...v0.5.1)
200
235
 
201
236
  ### Enhancements
202
237
 
203
238
  * Developer can pass options for CSV generation. [#1626][] by [@rheaton][]
204
239
  ```ruby
205
240
  ActiveAdmin.register Post do
206
- csv options: {force_quotes: true} do
241
+ csv options: { force_quotes: true } do
207
242
  column :title
208
243
  end
209
244
  end
@@ -258,7 +293,7 @@ application locales. [#1775][] by [@caifara][]
258
293
 
259
294
  156 commits (49 Pull Requests) by 51 contributors.
260
295
 
261
- ## 0.5.0 - [compare](https://github.com/gregbell/active_admin/compare/v0.4.4...v0.5.0)
296
+ ## 0.5.0 [](https://github.com/activeadmin/activeadmin/compare/v0.4.4...v0.5.0)
262
297
 
263
298
  ### Enhancements
264
299
 
@@ -292,20 +327,20 @@ application locales. [#1775][] by [@caifara][]
292
327
 
293
328
  561 commits (142 Pull Requests) by 88 contributors.
294
329
 
295
- ## 0.4.4 - [compare](https://github.com/gregbell/active_admin/compare/v0.4.3...v0.4.4)
330
+ ## 0.4.4 [](https://github.com/activeadmin/activeadmin/compare/v0.4.3...v0.4.4)
296
331
 
297
332
  ### Dependencies
298
333
 
299
334
  * Use `formtastic` ~> 2.1.1 until AA 0.5.0 is released
300
335
  * Use `inherited_resources` >= 1.3.1 (ensure flash messages work)
301
336
 
302
- ## 0.4.3 - [compare](https://github.com/gregbell/active_admin/compare/v0.4.2...v0.4.3)
337
+ ## 0.4.3 [](https://github.com/activeadmin/activeadmin/compare/v0.4.2...v0.4.3)
303
338
 
304
339
  ### Bug Fixes
305
340
 
306
341
  * [#1063][]: Fix comment issues when using postgres ([@jancel][])
307
342
 
308
- ## 0.4.2 - [compare](https://github.com/gregbell/active_admin/compare/v0.4.1...v0.4.2)
343
+ ## 0.4.2 [](https://github.com/activeadmin/activeadmin/compare/v0.4.1...v0.4.2)
309
344
 
310
345
  ### Enhancements
311
346
 
@@ -343,7 +378,7 @@ application locales. [#1775][] by [@caifara][]
343
378
  * Philippe Creux
344
379
 
345
380
 
346
- ## 0.4.1 - [compare](https://github.com/gregbell/active_admin/compare/v0.4.0...v0.4.1)
381
+ ## 0.4.1 [](https://github.com/activeadmin/activeadmin/compare/v0.4.0...v0.4.1)
347
382
 
348
383
  ### Enhancements
349
384
 
@@ -387,7 +422,7 @@ application locales. [#1775][] by [@caifara][]
387
422
  * Søren Houen
388
423
 
389
424
 
390
- ## 0.4.0 - [compare](https://github.com/gregbell/active_admin/compare/v0.3.4...v0.4.0)
425
+ ## 0.4.0 [](https://github.com/activeadmin/activeadmin/compare/v0.3.4...v0.4.0)
391
426
 
392
427
  ### Upgrade Notes
393
428
 
@@ -505,7 +540,7 @@ since we've changed both the CSS and JS files.
505
540
  * Josef Šimánek
506
541
 
507
542
 
508
- ## 0.3.4 - [compare](https://github.com/gregbell/active_admin/compare/v0.3.3...v0.3.4)
543
+ ## 0.3.4 [](https://github.com/activeadmin/activeadmin/compare/v0.3.3...v0.3.4)
509
544
 
510
545
  2 commits by 2 authors
511
546
 
@@ -521,7 +556,7 @@ since we've changed both the CSS and JS files.
521
556
  * Danny Hiemstra
522
557
  * Greg Bell
523
558
 
524
- ## 0.3.3 - [compare](https://github.com/gregbell/active_admin/compare/v0.3.2...v0.3.3)
559
+ ## 0.3.3 [](https://github.com/activeadmin/activeadmin/compare/v0.3.2...v0.3.3)
525
560
 
526
561
  1 commit by 1 author
527
562
 
@@ -535,7 +570,7 @@ since we've changed both the CSS and JS files.
535
570
 
536
571
  * Greg Bell
537
572
 
538
- ## 0.3.2 - [compare](https://github.com/gregbell/active_admin/compare/v0.3.1...v0.3.2)
573
+ ## 0.3.2 [](https://github.com/activeadmin/activeadmin/compare/v0.3.1...v0.3.2)
539
574
 
540
575
  45 commits by 15 contributors
541
576
 
@@ -580,11 +615,11 @@ since we've changed both the CSS and JS files.
580
615
  * Tsvetan Roustchev
581
616
  * l4u
582
617
 
583
- ## 0.3.1 - [compare](https://github.com/gregbell/active_admin/compare/v0.3.0...v0.3.1)
618
+ ## 0.3.1 [](https://github.com/activeadmin/activeadmin/compare/v0.3.0...v0.3.1)
584
619
 
585
620
  * Only support InheritedResources up to 1.2.2
586
621
 
587
- ## 0.3.0 - [compare](https://github.com/gregbell/active_admin/compare/v0.2.2...v0.3.0)
622
+ ## 0.3.0 [](https://github.com/activeadmin/activeadmin/compare/v0.2.2...v0.3.0)
588
623
 
589
624
  326 commits by 35 contributors
590
625
 
@@ -681,7 +716,7 @@ since we've changed both the CSS and JS files.
681
716
  * Łukasz Anwajler
682
717
 
683
718
 
684
- ## 0.2.2 (2011-05-26) - [compare](https://github.com/gregbell/active_admin/compare/v0.2.1...v0.2.2)
719
+ ## 0.2.2 [](https://github.com/activeadmin/activeadmin/compare/v0.2.1...v0.2.2)
685
720
 
686
721
  68 Commits by 13 Contributors
687
722
 
@@ -727,12 +762,12 @@ since we've changed both the CSS and JS files.
727
762
  * Paul Annesley
728
763
  * Philippe Creux
729
764
 
730
- ## 0.2.1 (2011-05-12) - [compare](https://github.com/gregbell/active_admin/compare/v0.2.0...v0.2.1)
765
+ ## 0.2.1 [](https://github.com/activeadmin/activeadmin/compare/v0.2.0...v0.2.1)
731
766
 
732
767
  ### Bug Fixes
733
768
  * Fixed issue with dashboard rendering a sidebar
734
769
 
735
- ## 0.2.0 (2011-05-12) - [compare](https://github.com/gregbell/active_admin/compare/v0.1.1...v0.2.0)
770
+ ## 0.2.0 [](https://github.com/activeadmin/activeadmin/compare/v0.1.1...v0.2.0)
736
771
 
737
772
  0.2.0 is essentially an entire re-write of Active Admin. Here are some
738
773
  of the highlights. 250 commits. Enough said.
@@ -748,7 +783,7 @@ of the highlights. 250 commits. Enough said.
748
783
 
749
784
  * Too many to list! Been in production for close to a year
750
785
 
751
- ## 0.1.1 (2010-09-15) - [compare](https://github.com/gregbell/active_admin/compare/v0.1.0...v0.1.1)
786
+ ## 0.1.1 [](https://github.com/activeadmin/activeadmin/compare/v0.1.0...v0.1.1)
752
787
 
753
788
  ### Bug Fixes
754
789
 
@@ -869,6 +904,7 @@ of the highlights. 250 commits. Enough said.
869
904
  [#1908]: https://github.com/activeadmin/activeadmin/issues/1908
870
905
  [#1913]: https://github.com/activeadmin/activeadmin/issues/1913
871
906
  [#1916]: https://github.com/activeadmin/activeadmin/issues/1916
907
+ [#1926]: https://github.com/activeadmin/activeadmin/issues/1926
872
908
  [#1928]: https://github.com/activeadmin/activeadmin/issues/1928
873
909
  [#1929]: https://github.com/activeadmin/activeadmin/issues/1929
874
910
  [#1933]: https://github.com/activeadmin/activeadmin/issues/1933
@@ -882,9 +918,12 @@ of the highlights. 250 commits. Enough said.
882
918
  [#1966]: https://github.com/activeadmin/activeadmin/issues/1966
883
919
  [#1967]: https://github.com/activeadmin/activeadmin/issues/1967
884
920
  [#1973]: https://github.com/activeadmin/activeadmin/issues/1973
921
+ [#1979]: https://github.com/activeadmin/activeadmin/issues/1979
885
922
  [#2000]: https://github.com/activeadmin/activeadmin/issues/2000
923
+ [#2001]: https://github.com/activeadmin/activeadmin/issues/2001
886
924
  [#2015]: https://github.com/activeadmin/activeadmin/issues/2015
887
925
  [#2018]: https://github.com/activeadmin/activeadmin/issues/2018
926
+ [#2040]: https://github.com/activeadmin/activeadmin/issues/2040
888
927
  [#2043]: https://github.com/activeadmin/activeadmin/issues/2043
889
928
  [#2044]: https://github.com/activeadmin/activeadmin/issues/2044
890
929
  [#2046]: https://github.com/activeadmin/activeadmin/issues/2046
@@ -927,6 +966,7 @@ of the highlights. 250 commits. Enough said.
927
966
  [#2313]: https://github.com/activeadmin/activeadmin/issues/2313
928
967
  [#2315]: https://github.com/activeadmin/activeadmin/issues/2315
929
968
  [#2319]: https://github.com/activeadmin/activeadmin/issues/2319
969
+ [#2326]: https://github.com/activeadmin/activeadmin/issues/2326
930
970
  [#2333]: https://github.com/activeadmin/activeadmin/issues/2333
931
971
  [#2348]: https://github.com/activeadmin/activeadmin/issues/2348
932
972
  [#2395]: https://github.com/activeadmin/activeadmin/issues/2395
@@ -935,42 +975,49 @@ of the highlights. 250 commits. Enough said.
935
975
  [#2419]: https://github.com/activeadmin/activeadmin/issues/2419
936
976
  [#2420]: https://github.com/activeadmin/activeadmin/issues/2420
937
977
  [#2454]: https://github.com/activeadmin/activeadmin/issues/2454
978
+ [#2523]: https://github.com/activeadmin/activeadmin/issues/2523
979
+ [#2532]: https://github.com/activeadmin/activeadmin/issues/2532
980
+ [#2541]: https://github.com/activeadmin/activeadmin/issues/2541
981
+ [#2544]: https://github.com/activeadmin/activeadmin/issues/2544
982
+ [#2545]: https://github.com/activeadmin/activeadmin/issues/2545
938
983
  [#2588]: https://github.com/activeadmin/activeadmin/issues/2588
939
984
  [#2601]: https://github.com/activeadmin/activeadmin/issues/2601
940
- [#2715]: https://github.com/activeadmin/activeadmin/issues/2715
941
985
  [#2744]: https://github.com/activeadmin/activeadmin/issues/2744
942
986
  [#2847]: https://github.com/activeadmin/activeadmin/issues/2847
943
- [#3489]: https://github.com/activeadmin/activeadmin/issues/3489
944
- [#3659]: https://github.com/activeadmin/activeadmin/issues/3659
945
- [#3698]: https://github.com/activeadmin/activeadmin/issues/3698
946
- [#3765]: https://github.com/activeadmin/activeadmin/issues/3765
947
- [#3779]: https://github.com/activeadmin/activeadmin/issues/3779
987
+ [#3075]: https://github.com/activeadmin/activeadmin/issues/3075
988
+ [#3463]: https://github.com/activeadmin/activeadmin/issues/3463
989
+ [#3464]: https://github.com/activeadmin/activeadmin/issues/3464
990
+ [#3486]: https://github.com/activeadmin/activeadmin/issues/3486
991
+ [#3519]: https://github.com/activeadmin/activeadmin/issues/3519
992
+ [#3606]: https://github.com/activeadmin/activeadmin/issues/3606
993
+ [#3686]: https://github.com/activeadmin/activeadmin/issues/3686
994
+ [#3695]: https://github.com/activeadmin/activeadmin/issues/3695
995
+ [#3731]: https://github.com/activeadmin/activeadmin/issues/3731
948
996
  [@Bishop]: https://github.com/Bishop
949
997
  [@BoboFraggins]: https://github.com/BoboFraggins
950
998
  [@DMajrekar]: https://github.com/DMajrekar
951
- [@Daxter]: https://github.com/Daxter
952
999
  [@EtienneDepaulis]: https://github.com/EtienneDepaulis
953
1000
  [@MoritzMoritz]: https://github.com/MoritzMoritz
1001
+ [@PChambino]: https://github.com/PChambino
954
1002
  [@TBAA]: https://github.com/TBAA
955
1003
  [@TiagoCardoso1983]: https://github.com/TiagoCardoso1983
1004
+ [@TimPetricola]: https://github.com/TimPetricola
956
1005
  [@ZequeZ]: https://github.com/ZequeZ
957
- [@aaronsakowski]: https://github.com/aaronsakowski
958
1006
  [@adrienkohlbecker]: https://github.com/adrienkohlbecker
959
1007
  [@ai]: https://github.com/ai
960
1008
  [@amiel]: https://github.com/amiel
961
- [@azach]: https://github.com/azach
962
1009
  [@ball-hayden]: https://github.com/ball-hayden
963
1010
  [@bobbytables]: https://github.com/bobbytables
964
1011
  [@caifara]: https://github.com/caifara
965
1012
  [@cknoxrun]: https://github.com/cknoxrun
966
1013
  [@comboy]: https://github.com/comboy
967
1014
  [@coreyward]: https://github.com/coreyward
968
- [@craigmcnamara]: https://github.com/craigmcnamara
969
1015
  [@dapi]: https://github.com/dapi
970
1016
  [@dbussin]: https://github.com/dbussin
971
1017
  [@developer88]: https://github.com/developer88
972
1018
  [@dhiemstra]: https://github.com/dhiemstra
973
1019
  [@dmfrancisco]: https://github.com/dmfrancisco
1020
+ [@dmitry]: https://github.com/dmitry
974
1021
  [@doug316]: https://github.com/doug316
975
1022
  [@ebeigarts]: https://github.com/ebeigarts
976
1023
  [@ejholmes]: https://github.com/ejholmes
@@ -983,6 +1030,7 @@ of the highlights. 250 commits. Enough said.
983
1030
  [@george]: https://github.com/george
984
1031
  [@ggilder]: https://github.com/ggilder
985
1032
  [@givanse]: https://github.com/givanse
1033
+ [@gonzedge]: https://github.com/gonzedge
986
1034
  [@gregbell]: https://github.com/gregbell
987
1035
  [@hakanensari]: https://github.com/hakanensari
988
1036
  [@henrrrik]: https://github.com/henrrrik
@@ -1018,6 +1066,8 @@ of the highlights. 250 commits. Enough said.
1018
1066
  [@page_title]: https://github.com/page_title
1019
1067
  [@pcreux]: https://github.com/pcreux
1020
1068
  [@per_page]: https://github.com/per_page
1069
+ [@potatosalad]: https://github.com/potatosalad
1070
+ [@pranas]: https://github.com/pranas
1021
1071
  [@psy-q]: https://github.com/psy-q
1022
1072
  [@ptn]: https://github.com/ptn
1023
1073
  [@randym]: https://github.com/randym
@@ -1048,8 +1098,9 @@ of the highlights. 250 commits. Enough said.
1048
1098
  [@vairix]: https://github.com/vairix
1049
1099
  [@vairix-ssierra]: https://github.com/vairix-ssierra
1050
1100
  [@valdemarua]: https://github.com/valdemarua
1101
+ [@varyonic]: https://github.com/varyonic
1051
1102
  [@watson]: https://github.com/watson
1052
1103
  [@whatcould]: https://github.com/whatcould
1053
1104
  [@yawn]: https://github.com/yawn
1054
1105
  [@yorch]: https://github.com/yorch
1055
- [@zorab47]: https://github.com/zorab47
1106
+ [@zorab47]: https://github.com/zorab47