yousty-activeadmin 1.0.0.pre

Sign up to get free protection for your applications and to get access to all the features.
Files changed (490) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +43 -0
  3. data/.travis.yml +8 -0
  4. data/.yardopts +9 -0
  5. data/CHANGELOG.md +1056 -0
  6. data/CONTRIBUTING.md +110 -0
  7. data/Gemfile +41 -0
  8. data/Guardfile +7 -0
  9. data/LICENSE +25 -0
  10. data/README.md +67 -0
  11. data/Rakefile +25 -0
  12. data/activeadmin.gemspec +33 -0
  13. data/app/assets/images/active_admin/admin_notes_icon.png +0 -0
  14. data/app/assets/images/active_admin/datepicker/datepicker-header-bg.png +0 -0
  15. data/app/assets/images/active_admin/datepicker/datepicker-input-icon.png +0 -0
  16. data/app/assets/images/active_admin/datepicker/datepicker-next-link-icon.png +0 -0
  17. data/app/assets/images/active_admin/datepicker/datepicker-nipple.png +0 -0
  18. data/app/assets/images/active_admin/datepicker/datepicker-prev-link-icon.png +0 -0
  19. data/app/assets/images/active_admin/index_list_icons/block_icon.svg +10 -0
  20. data/app/assets/images/active_admin/index_list_icons/blog_icon.svg +4 -0
  21. data/app/assets/images/active_admin/index_list_icons/grid_icon.svg +13 -0
  22. data/app/assets/images/active_admin/index_list_icons/table_icon.svg +3 -0
  23. data/app/assets/images/active_admin/loading.gif +0 -0
  24. data/app/assets/images/active_admin/nested_menu_arrow.gif +0 -0
  25. data/app/assets/images/active_admin/nested_menu_arrow_dark.gif +0 -0
  26. data/app/assets/images/active_admin/orderable.png +0 -0
  27. data/app/assets/javascripts/active_admin/application.js.coffee +6 -0
  28. data/app/assets/javascripts/active_admin/base.js.coffee +5 -0
  29. data/app/assets/javascripts/active_admin/components/application.js.coffee +23 -0
  30. data/app/assets/javascripts/active_admin/components/batch_actions.js.coffee +26 -0
  31. data/app/assets/javascripts/active_admin/components/has_many.js.coffee +41 -0
  32. data/app/assets/javascripts/active_admin/lib/checkbox-toggler.js.coffee +37 -0
  33. data/app/assets/javascripts/active_admin/lib/dropdown-menu.js.coffee +105 -0
  34. data/app/assets/javascripts/active_admin/lib/popover.js.coffee +97 -0
  35. data/app/assets/javascripts/active_admin/lib/table-checkbox-toggler.js.coffee +25 -0
  36. data/app/assets/stylesheets/active_admin/_base.css.scss +41 -0
  37. data/app/assets/stylesheets/active_admin/_forms.css.scss +293 -0
  38. data/app/assets/stylesheets/active_admin/_header.css.scss +152 -0
  39. data/app/assets/stylesheets/active_admin/_mixins.css.scss +1 -0
  40. data/app/assets/stylesheets/active_admin/_typography.css.scss +100 -0
  41. data/app/assets/stylesheets/active_admin/components/_batch_actions.css.scss +11 -0
  42. data/app/assets/stylesheets/active_admin/components/_blank_slates.scss +31 -0
  43. data/app/assets/stylesheets/active_admin/components/_breadcrumbs.scss +20 -0
  44. data/app/assets/stylesheets/active_admin/components/_buttons.scss +11 -0
  45. data/app/assets/stylesheets/active_admin/components/_columns.scss +3 -0
  46. data/app/assets/stylesheets/active_admin/components/_comments.css.scss +41 -0
  47. data/app/assets/stylesheets/active_admin/components/_date_picker.css.scss +123 -0
  48. data/app/assets/stylesheets/active_admin/components/_dropdown_menu.scss +151 -0
  49. data/app/assets/stylesheets/active_admin/components/_flash_messages.css.scss +39 -0
  50. data/app/assets/stylesheets/active_admin/components/_grid.scss +9 -0
  51. data/app/assets/stylesheets/active_admin/components/_index_list.scss +12 -0
  52. data/app/assets/stylesheets/active_admin/components/_links.scss +5 -0
  53. data/app/assets/stylesheets/active_admin/components/_pagination.scss +34 -0
  54. data/app/assets/stylesheets/active_admin/components/_panels.scss +6 -0
  55. data/app/assets/stylesheets/active_admin/components/_popovers.css.scss +123 -0
  56. data/app/assets/stylesheets/active_admin/components/_scopes.scss +10 -0
  57. data/app/assets/stylesheets/active_admin/components/_status_tags.scss +12 -0
  58. data/app/assets/stylesheets/active_admin/components/_table_tools.css.scss +95 -0
  59. data/app/assets/stylesheets/active_admin/components/_tables.css.scss +110 -0
  60. data/app/assets/stylesheets/active_admin/mixins/_all.css.scss +11 -0
  61. data/app/assets/stylesheets/active_admin/mixins/_buttons.css.scss +66 -0
  62. data/app/assets/stylesheets/active_admin/mixins/_gradients.css.scss +38 -0
  63. data/app/assets/stylesheets/active_admin/mixins/_icons.css.scss +21 -0
  64. data/app/assets/stylesheets/active_admin/mixins/_reset.css.scss +165 -0
  65. data/app/assets/stylesheets/active_admin/mixins/_rounded.css.scss +43 -0
  66. data/app/assets/stylesheets/active_admin/mixins/_sections.css.scss +36 -0
  67. data/app/assets/stylesheets/active_admin/mixins/_shadows.css.scss +22 -0
  68. data/app/assets/stylesheets/active_admin/mixins/_typography.scss +3 -0
  69. data/app/assets/stylesheets/active_admin/mixins/_utilities.scss +26 -0
  70. data/app/assets/stylesheets/active_admin/mixins/_variables.css.scss +32 -0
  71. data/app/assets/stylesheets/active_admin/pages/_logged_out.scss +44 -0
  72. data/app/assets/stylesheets/active_admin/print.css.scss +284 -0
  73. data/app/assets/stylesheets/active_admin/structure/_footer.scss +14 -0
  74. data/app/assets/stylesheets/active_admin/structure/_main_structure.scss +29 -0
  75. data/app/assets/stylesheets/active_admin/structure/_title_bar.scss +43 -0
  76. data/app/views/active_admin/dashboard/index.html.arb +1 -0
  77. data/app/views/active_admin/devise/mailer/reset_password_instructions.html.erb +8 -0
  78. data/app/views/active_admin/devise/mailer/unlock_instructions.html.erb +7 -0
  79. data/app/views/active_admin/devise/passwords/edit.html.erb +19 -0
  80. data/app/views/active_admin/devise/passwords/new.html.erb +14 -0
  81. data/app/views/active_admin/devise/sessions/new.html.erb +20 -0
  82. data/app/views/active_admin/devise/shared/_links.erb +27 -0
  83. data/app/views/active_admin/devise/unlocks/new.html.erb +14 -0
  84. data/app/views/active_admin/page/index.html.arb +1 -0
  85. data/app/views/active_admin/resource/edit.html.arb +1 -0
  86. data/app/views/active_admin/resource/index.csv.erb +17 -0
  87. data/app/views/active_admin/resource/index.html.arb +1 -0
  88. data/app/views/active_admin/resource/new.html.arb +1 -0
  89. data/app/views/active_admin/resource/show.html.arb +1 -0
  90. data/app/views/layouts/active_admin.html.arb +1 -0
  91. data/app/views/layouts/active_admin_logged_out.html.erb +37 -0
  92. data/config/locales/bg.yml +101 -0
  93. data/config/locales/ca.yml +98 -0
  94. data/config/locales/cs.yml +105 -0
  95. data/config/locales/da.yml +102 -0
  96. data/config/locales/de-CH.yml +117 -0
  97. data/config/locales/de.yml +119 -0
  98. data/config/locales/en-GB.yml +91 -0
  99. data/config/locales/en.yml +110 -0
  100. data/config/locales/es.yml +106 -0
  101. data/config/locales/es_MX.yml +104 -0
  102. data/config/locales/fi.yml +109 -0
  103. data/config/locales/fr.yml +97 -0
  104. data/config/locales/he.yml +91 -0
  105. data/config/locales/hr.yml +93 -0
  106. data/config/locales/hu.yml +92 -0
  107. data/config/locales/it.yml +89 -0
  108. data/config/locales/ja.yml +104 -0
  109. data/config/locales/ko.yml +84 -0
  110. data/config/locales/lt.yml +90 -0
  111. data/config/locales/lv.yml +89 -0
  112. data/config/locales/nl.yml +90 -0
  113. data/config/locales/no-NB.yml +85 -0
  114. data/config/locales/pl.yml +93 -0
  115. data/config/locales/pt-BR.yml +90 -0
  116. data/config/locales/pt-PT.yml +89 -0
  117. data/config/locales/ro.yml +93 -0
  118. data/config/locales/ru.yml +103 -0
  119. data/config/locales/sv-SE.yml +89 -0
  120. data/config/locales/tr.yml +90 -0
  121. data/config/locales/uk.yml +100 -0
  122. data/config/locales/vi.yml +90 -0
  123. data/config/locales/zh-CN.yml +90 -0
  124. data/config/locales/zh-TW.yml +90 -0
  125. data/cucumber.yml +3 -0
  126. data/docs/0-installation.md +84 -0
  127. data/docs/1-general-configuration.md +137 -0
  128. data/docs/10-custom-pages.md +98 -0
  129. data/docs/11-decorators.md +66 -0
  130. data/docs/12-arbre-components.md +144 -0
  131. data/docs/13-authorization-adapter.md +227 -0
  132. data/docs/2-resource-customization.md +340 -0
  133. data/docs/3-index-pages/create-an-index.md +29 -0
  134. data/docs/3-index-pages/index-as-block.md +21 -0
  135. data/docs/3-index-pages/index-as-blog.md +71 -0
  136. data/docs/3-index-pages/index-as-grid.md +29 -0
  137. data/docs/3-index-pages/index-as-table.md +154 -0
  138. data/docs/3-index-pages.md +206 -0
  139. data/docs/4-csv-format.md +39 -0
  140. data/docs/5-forms.md +110 -0
  141. data/docs/6-show-pages.md +77 -0
  142. data/docs/7-sidebars.md +42 -0
  143. data/docs/8-custom-actions.md +139 -0
  144. data/docs/9-batch-actions.md +155 -0
  145. data/features/action_item.feature +73 -0
  146. data/features/authorization.feature +64 -0
  147. data/features/authorization_cancan.feature +52 -0
  148. data/features/belongs_to.feature +63 -0
  149. data/features/breadcrumb.feature +27 -0
  150. data/features/comments/commenting.feature +140 -0
  151. data/features/comments/viewing_index.feature +19 -0
  152. data/features/dashboard.feature +16 -0
  153. data/features/decorators.feature +41 -0
  154. data/features/development_reloading.feature +31 -0
  155. data/features/edit_page.feature +127 -0
  156. data/features/favicon.feature +20 -0
  157. data/features/first_boot.feature +16 -0
  158. data/features/global_navigation.feature +29 -0
  159. data/features/i18n.feature +38 -0
  160. data/features/index/batch_actions.feature +123 -0
  161. data/features/index/filters.feature +138 -0
  162. data/features/index/format_as_csv.feature +117 -0
  163. data/features/index/formats.feature +66 -0
  164. data/features/index/index_as_block.feature +15 -0
  165. data/features/index/index_as_blog.feature +69 -0
  166. data/features/index/index_as_grid.feature +45 -0
  167. data/features/index/index_as_table.feature +195 -0
  168. data/features/index/index_blank_slate.feature +61 -0
  169. data/features/index/index_parameters.feature +75 -0
  170. data/features/index/index_scope_to.feature +56 -0
  171. data/features/index/index_scopes.feature +251 -0
  172. data/features/index/page_title.feature +30 -0
  173. data/features/index/pagination.feature +59 -0
  174. data/features/index/switch_index_view.feature +73 -0
  175. data/features/menu.feature +53 -0
  176. data/features/new_page.feature +119 -0
  177. data/features/registering_assets.feature +35 -0
  178. data/features/registering_pages.feature +148 -0
  179. data/features/registering_resources.feature +33 -0
  180. data/features/root_to.feature +17 -0
  181. data/features/show/default_content.feature +43 -0
  182. data/features/show/page_title.feature +47 -0
  183. data/features/sidebar_sections.feature +198 -0
  184. data/features/site_title.feature +47 -0
  185. data/features/specifying_actions.feature +93 -0
  186. data/features/step_definitions/action_item_steps.rb +7 -0
  187. data/features/step_definitions/action_link_steps.rb +7 -0
  188. data/features/step_definitions/additional_web_steps.rb +82 -0
  189. data/features/step_definitions/asset_steps.rb +15 -0
  190. data/features/step_definitions/attribute_steps.rb +13 -0
  191. data/features/step_definitions/batch_action_steps.rb +55 -0
  192. data/features/step_definitions/breadcrumb_steps.rb +3 -0
  193. data/features/step_definitions/comment_steps.rb +12 -0
  194. data/features/step_definitions/configuration_steps.rb +100 -0
  195. data/features/step_definitions/dashboard_steps.rb +15 -0
  196. data/features/step_definitions/factory_steps.rb +34 -0
  197. data/features/step_definitions/filter_steps.rb +17 -0
  198. data/features/step_definitions/flash_steps.rb +11 -0
  199. data/features/step_definitions/format_steps.rb +45 -0
  200. data/features/step_definitions/i18n_steps.rb +3 -0
  201. data/features/step_definitions/index_scope_steps.rb +21 -0
  202. data/features/step_definitions/index_views_steps.rb +3 -0
  203. data/features/step_definitions/layout_steps.rb +3 -0
  204. data/features/step_definitions/member_link_steps.rb +7 -0
  205. data/features/step_definitions/menu_steps.rb +11 -0
  206. data/features/step_definitions/pagination_steps.rb +8 -0
  207. data/features/step_definitions/sidebar_steps.rb +8 -0
  208. data/features/step_definitions/site_title_steps.rb +15 -0
  209. data/features/step_definitions/symbol_leak_steps.rb +3 -0
  210. data/features/step_definitions/tab_steps.rb +3 -0
  211. data/features/step_definitions/table_steps.rb +119 -0
  212. data/features/step_definitions/user_steps.rb +39 -0
  213. data/features/step_definitions/web_steps.rb +86 -0
  214. data/features/sti_resource.feature +73 -0
  215. data/features/support/env.rb +112 -0
  216. data/features/support/paths.rb +71 -0
  217. data/features/support/selectors.rb +45 -0
  218. data/features/symbol_leak.feature +35 -0
  219. data/features/users/logging_in.feature +34 -0
  220. data/features/users/logging_out.feature +13 -0
  221. data/features/users/resetting_password.feature +34 -0
  222. data/lib/active_admin/abstract_view_factory.rb +95 -0
  223. data/lib/active_admin/application.rb +242 -0
  224. data/lib/active_admin/asset_registration.rb +29 -0
  225. data/lib/active_admin/authorization_adapter.rb +132 -0
  226. data/lib/active_admin/base_controller/authorization.rb +151 -0
  227. data/lib/active_admin/base_controller/menu.rb +34 -0
  228. data/lib/active_admin/base_controller.rb +78 -0
  229. data/lib/active_admin/batch_actions/controller.rb +24 -0
  230. data/lib/active_admin/batch_actions/resource_extension.rb +127 -0
  231. data/lib/active_admin/batch_actions/views/batch_action_form.rb +35 -0
  232. data/lib/active_admin/batch_actions/views/batch_action_popover.rb +28 -0
  233. data/lib/active_admin/batch_actions/views/batch_action_selector.rb +66 -0
  234. data/lib/active_admin/batch_actions/views/selection_cells.rb +37 -0
  235. data/lib/active_admin/batch_actions.rb +17 -0
  236. data/lib/active_admin/callbacks.rb +87 -0
  237. data/lib/active_admin/cancan_adapter.rb +40 -0
  238. data/lib/active_admin/component.rb +5 -0
  239. data/lib/active_admin/controller_action.rb +12 -0
  240. data/lib/active_admin/csv_builder.rb +49 -0
  241. data/lib/active_admin/deprecation.rb +36 -0
  242. data/lib/active_admin/devise.rb +70 -0
  243. data/lib/active_admin/dsl.rb +166 -0
  244. data/lib/active_admin/engine.rb +7 -0
  245. data/lib/active_admin/event.rb +33 -0
  246. data/lib/active_admin/filters/dsl.rb +21 -0
  247. data/lib/active_admin/filters/forms.rb +89 -0
  248. data/lib/active_admin/filters/formtastic_addons.rb +70 -0
  249. data/lib/active_admin/filters/resource_extension.rb +136 -0
  250. data/lib/active_admin/filters.rb +9 -0
  251. data/lib/active_admin/form_builder.rb +152 -0
  252. data/lib/active_admin/helpers/collection.rb +23 -0
  253. data/lib/active_admin/helpers/optional_display.rb +38 -0
  254. data/lib/active_admin/helpers/scope_chain.rb +23 -0
  255. data/lib/active_admin/helpers/settings.rb +108 -0
  256. data/lib/active_admin/iconic/icons.rb +142 -0
  257. data/lib/active_admin/iconic.rb +51 -0
  258. data/lib/active_admin/inputs/datepicker_input.rb +20 -0
  259. data/lib/active_admin/inputs/filter_base/search_method_select.rb +73 -0
  260. data/lib/active_admin/inputs/filter_base.rb +33 -0
  261. data/lib/active_admin/inputs/filter_boolean_input.rb +32 -0
  262. data/lib/active_admin/inputs/filter_check_boxes_input.rb +51 -0
  263. data/lib/active_admin/inputs/filter_date_range_input.rb +34 -0
  264. data/lib/active_admin/inputs/filter_numeric_input.rb +10 -0
  265. data/lib/active_admin/inputs/filter_select_input.rb +61 -0
  266. data/lib/active_admin/inputs/filter_string_input.rb +24 -0
  267. data/lib/active_admin/inputs.rb +15 -0
  268. data/lib/active_admin/menu.rb +107 -0
  269. data/lib/active_admin/menu_collection.rb +96 -0
  270. data/lib/active_admin/menu_item.rb +97 -0
  271. data/lib/active_admin/namespace.rb +224 -0
  272. data/lib/active_admin/orm/active_record/comments/comment.rb +39 -0
  273. data/lib/active_admin/orm/active_record/comments/namespace_helper.rb +14 -0
  274. data/lib/active_admin/orm/active_record/comments/resource_helper.rb +17 -0
  275. data/lib/active_admin/orm/active_record/comments/show_page_helper.rb +23 -0
  276. data/lib/active_admin/orm/active_record/comments/views/active_admin_comments.rb +75 -0
  277. data/lib/active_admin/orm/active_record/comments/views.rb +2 -0
  278. data/lib/active_admin/orm/active_record/comments.rb +84 -0
  279. data/lib/active_admin/orm/active_record.rb +3 -0
  280. data/lib/active_admin/orm/mongoid/.gitkeep +0 -0
  281. data/lib/active_admin/orm/mongoid.rb +1 -0
  282. data/lib/active_admin/page.rb +88 -0
  283. data/lib/active_admin/page_controller.rb +29 -0
  284. data/lib/active_admin/page_dsl.rb +28 -0
  285. data/lib/active_admin/page_presenter.rb +32 -0
  286. data/lib/active_admin/resource/action_items.rb +91 -0
  287. data/lib/active_admin/resource/belongs_to.rb +36 -0
  288. data/lib/active_admin/resource/controllers.rb +18 -0
  289. data/lib/active_admin/resource/menu.rb +64 -0
  290. data/lib/active_admin/resource/naming.rb +84 -0
  291. data/lib/active_admin/resource/page_presenters.rb +82 -0
  292. data/lib/active_admin/resource/pagination.rb +19 -0
  293. data/lib/active_admin/resource/routes.rb +99 -0
  294. data/lib/active_admin/resource/scope_to.rb +74 -0
  295. data/lib/active_admin/resource/scopes.rb +50 -0
  296. data/lib/active_admin/resource/sidebars.rb +27 -0
  297. data/lib/active_admin/resource.rb +153 -0
  298. data/lib/active_admin/resource_collection.rb +42 -0
  299. data/lib/active_admin/resource_controller/action_builder.rb +21 -0
  300. data/lib/active_admin/resource_controller/data_access.rb +298 -0
  301. data/lib/active_admin/resource_controller/decorators.rb +20 -0
  302. data/lib/active_admin/resource_controller/resource_class_methods.rb +24 -0
  303. data/lib/active_admin/resource_controller/scoping.rb +31 -0
  304. data/lib/active_admin/resource_controller/sidebars.rb +18 -0
  305. data/lib/active_admin/resource_controller.rb +50 -0
  306. data/lib/active_admin/resource_dsl.rb +134 -0
  307. data/lib/active_admin/router.rb +106 -0
  308. data/lib/active_admin/scope.rb +57 -0
  309. data/lib/active_admin/sidebar_section.rb +37 -0
  310. data/lib/active_admin/version.rb +3 -0
  311. data/lib/active_admin/view_factory.rb +27 -0
  312. data/lib/active_admin/view_helpers/active_admin_application_helper.rb +12 -0
  313. data/lib/active_admin/view_helpers/assigns_with_indifferent_access_helper.rb +7 -0
  314. data/lib/active_admin/view_helpers/auto_link_helper.rb +34 -0
  315. data/lib/active_admin/view_helpers/breadcrumb_helper.rb +26 -0
  316. data/lib/active_admin/view_helpers/display_helper.rb +49 -0
  317. data/lib/active_admin/view_helpers/download_format_links_helper.rb +49 -0
  318. data/lib/active_admin/view_helpers/fields_for.rb +50 -0
  319. data/lib/active_admin/view_helpers/flash_helper.rb +13 -0
  320. data/lib/active_admin/view_helpers/form_helper.rb +24 -0
  321. data/lib/active_admin/view_helpers/icon_helper.rb +12 -0
  322. data/lib/active_admin/view_helpers/method_or_proc_helper.rb +93 -0
  323. data/lib/active_admin/view_helpers/sidebar_helper.rb +15 -0
  324. data/lib/active_admin/view_helpers/title_helper.rb +11 -0
  325. data/lib/active_admin/view_helpers/view_factory_helper.rb +11 -0
  326. data/lib/active_admin/view_helpers.rb +21 -0
  327. data/lib/active_admin/views/action_items.rb +17 -0
  328. data/lib/active_admin/views/components/action_list_popover.rb +29 -0
  329. data/lib/active_admin/views/components/attributes_table.rb +103 -0
  330. data/lib/active_admin/views/components/blank_slate.rb +17 -0
  331. data/lib/active_admin/views/components/columns.rb +150 -0
  332. data/lib/active_admin/views/components/dropdown_menu.rb +73 -0
  333. data/lib/active_admin/views/components/index_list.rb +68 -0
  334. data/lib/active_admin/views/components/paginated_collection.rb +125 -0
  335. data/lib/active_admin/views/components/panel.rb +34 -0
  336. data/lib/active_admin/views/components/popover.rb +27 -0
  337. data/lib/active_admin/views/components/scopes.rb +66 -0
  338. data/lib/active_admin/views/components/sidebar_section.rb +28 -0
  339. data/lib/active_admin/views/components/site_title.rb +55 -0
  340. data/lib/active_admin/views/components/status_tag.rb +56 -0
  341. data/lib/active_admin/views/components/table_for.rb +191 -0
  342. data/lib/active_admin/views/footer.rb +20 -0
  343. data/lib/active_admin/views/header.rb +32 -0
  344. data/lib/active_admin/views/index_as_block.rb +36 -0
  345. data/lib/active_admin/views/index_as_blog.rb +156 -0
  346. data/lib/active_admin/views/index_as_grid.rb +80 -0
  347. data/lib/active_admin/views/index_as_table.rb +264 -0
  348. data/lib/active_admin/views/pages/base.rb +139 -0
  349. data/lib/active_admin/views/pages/form.rb +51 -0
  350. data/lib/active_admin/views/pages/index.rb +147 -0
  351. data/lib/active_admin/views/pages/layout.rb +26 -0
  352. data/lib/active_admin/views/pages/page.rb +30 -0
  353. data/lib/active_admin/views/pages/show.rb +59 -0
  354. data/lib/active_admin/views/tabbed_navigation.rb +62 -0
  355. data/lib/active_admin/views/title_bar.rb +53 -0
  356. data/lib/active_admin/views.rb +8 -0
  357. data/lib/active_admin.rb +125 -0
  358. data/lib/activeadmin.rb +1 -0
  359. data/lib/generators/active_admin/assets/assets_generator.rb +16 -0
  360. data/lib/generators/active_admin/assets/templates/active_admin.css.scss +17 -0
  361. data/lib/generators/active_admin/assets/templates/active_admin.js.coffee +1 -0
  362. data/lib/generators/active_admin/devise/devise_generator.rb +86 -0
  363. data/lib/generators/active_admin/install/install_generator.rb +46 -0
  364. data/lib/generators/active_admin/install/templates/active_admin.rb.erb +235 -0
  365. data/lib/generators/active_admin/install/templates/admin_user.rb.erb +27 -0
  366. data/lib/generators/active_admin/install/templates/dashboard.rb +33 -0
  367. data/lib/generators/active_admin/install/templates/migrations/create_active_admin_comments.rb +19 -0
  368. data/lib/generators/active_admin/resource/resource_generator.rb +16 -0
  369. data/lib/generators/active_admin/resource/templates/admin.rb +3 -0
  370. data/lib/ransack_ext.rb +12 -0
  371. data/script/local +44 -0
  372. data/script/use_rails +53 -0
  373. data/spec/integration/default_namespace_spec.rb +61 -0
  374. data/spec/integration/javascript_spec.rb +20 -0
  375. data/spec/integration/memory_spec.rb +29 -0
  376. data/spec/integration/stylesheets_spec.rb +41 -0
  377. data/spec/javascripts/coffeescripts/jquery.aa.checkbox-toggler-spec.js.coffee +50 -0
  378. data/spec/javascripts/coffeescripts/jquery.aa.popover-spec.js.coffee +82 -0
  379. data/spec/javascripts/coffeescripts/jquery.aa.table-checkbox-toggler-spec.js.coffee +34 -0
  380. data/spec/javascripts/compiled/jquery.aa.checkbox-toggler-spec.js +60 -0
  381. data/spec/javascripts/compiled/jquery.aa.popover-spec.js +106 -0
  382. data/spec/javascripts/compiled/jquery.aa.table-checkbox-toggler-spec.js +37 -0
  383. data/spec/javascripts/fixtures/checkboxes.html +9 -0
  384. data/spec/javascripts/fixtures/table_checkboxes.html +17 -0
  385. data/spec/javascripts/helpers/SpecHelper.js +3 -0
  386. data/spec/javascripts/helpers/vendor/jasmine-fixture-0.0.5.js +108 -0
  387. data/spec/javascripts/helpers/vendor/jasmine-jquery.js +288 -0
  388. data/spec/javascripts/helpers/vendor/sinon-1.2.0.js +2915 -0
  389. data/spec/javascripts/support/jasmine.yml +74 -0
  390. data/spec/javascripts/support/jasmine_config.rb +23 -0
  391. data/spec/javascripts/support/jasmine_runner.rb +32 -0
  392. data/spec/javascripts/support/jquery-ui-1.8.16.custom.min.js +34 -0
  393. data/spec/javascripts/support/jquery.min.js +4 -0
  394. data/spec/spec_helper.rb +175 -0
  395. data/spec/spec_helper_without_rails.rb +16 -0
  396. data/spec/support/deferred_garbage_collection.rb +19 -0
  397. data/spec/support/detect_rails_version.rb +42 -0
  398. data/spec/support/integration_example_group.rb +31 -0
  399. data/spec/support/jslint.yml +80 -0
  400. data/spec/support/rails_template.rb +111 -0
  401. data/spec/support/rails_template_with_data.rb +59 -0
  402. data/spec/support/templates/admin/stores.rb +11 -0
  403. data/spec/support/templates/cucumber.rb +24 -0
  404. data/spec/support/templates/cucumber_with_reloading.rb +5 -0
  405. data/spec/support/templates/en.yml +8 -0
  406. data/spec/support/templates/post_decorator.rb +53 -0
  407. data/spec/unit/abstract_view_factory_spec.rb +79 -0
  408. data/spec/unit/action_builder_spec.rb +126 -0
  409. data/spec/unit/active_admin_spec.rb +11 -0
  410. data/spec/unit/application_spec.rb +141 -0
  411. data/spec/unit/asset_registration_spec.rb +52 -0
  412. data/spec/unit/authorization/authorization_adapter_spec.rb +61 -0
  413. data/spec/unit/authorization/controller_authorization_spec.rb +39 -0
  414. data/spec/unit/auto_link_spec.rb +32 -0
  415. data/spec/unit/batch_actions/resource_spec.rb +91 -0
  416. data/spec/unit/batch_actions/settings_spec.rb +61 -0
  417. data/spec/unit/belongs_to_spec.rb +42 -0
  418. data/spec/unit/cancan_adapter_spec.rb +43 -0
  419. data/spec/unit/comments_spec.rb +106 -0
  420. data/spec/unit/component_spec.rb +18 -0
  421. data/spec/unit/config_shared_examples.rb +59 -0
  422. data/spec/unit/controller_filters_spec.rb +32 -0
  423. data/spec/unit/csv_builder_spec.rb +103 -0
  424. data/spec/unit/devise_spec.rb +116 -0
  425. data/spec/unit/dsl_spec.rb +61 -0
  426. data/spec/unit/event_spec.rb +47 -0
  427. data/spec/unit/filters/filter_form_builder_spec.rb +423 -0
  428. data/spec/unit/filters/resource_spec.rb +119 -0
  429. data/spec/unit/form_builder_spec.rb +514 -0
  430. data/spec/unit/generators/install_spec.rb +23 -0
  431. data/spec/unit/helpers/collection_spec.rb +65 -0
  432. data/spec/unit/helpers/scope_chain_spec.rb +36 -0
  433. data/spec/unit/helpers/settings_spec.rb +30 -0
  434. data/spec/unit/menu_collection_spec.rb +62 -0
  435. data/spec/unit/menu_item_spec.rb +143 -0
  436. data/spec/unit/menu_spec.rb +71 -0
  437. data/spec/unit/namespace/authorization_spec.rb +27 -0
  438. data/spec/unit/namespace/register_page_spec.rb +74 -0
  439. data/spec/unit/namespace/register_resource_spec.rb +163 -0
  440. data/spec/unit/namespace_spec.rb +103 -0
  441. data/spec/unit/page_controller_spec.rb +5 -0
  442. data/spec/unit/page_spec.rb +72 -0
  443. data/spec/unit/pretty_format_spec.rb +35 -0
  444. data/spec/unit/resource/action_items_spec.rb +62 -0
  445. data/spec/unit/resource/menu_spec.rb +18 -0
  446. data/spec/unit/resource/naming_spec.rb +122 -0
  447. data/spec/unit/resource/page_presenters_spec.rb +44 -0
  448. data/spec/unit/resource/pagination_spec.rb +38 -0
  449. data/spec/unit/resource/routes_spec.rb +73 -0
  450. data/spec/unit/resource/scopes_spec.rb +43 -0
  451. data/spec/unit/resource/sidebars_spec.rb +43 -0
  452. data/spec/unit/resource_collection_spec.rb +160 -0
  453. data/spec/unit/resource_controller/data_access_spec.rb +73 -0
  454. data/spec/unit/resource_controller/sidebars_spec.rb +46 -0
  455. data/spec/unit/resource_controller_spec.rb +265 -0
  456. data/spec/unit/resource_registration_spec.rb +56 -0
  457. data/spec/unit/resource_spec.rb +243 -0
  458. data/spec/unit/routing_spec.rb +172 -0
  459. data/spec/unit/scope_spec.rb +108 -0
  460. data/spec/unit/settings_spec.rb +88 -0
  461. data/spec/unit/view_factory_spec.rb +21 -0
  462. data/spec/unit/view_helpers/breadcrumbs_spec.rb +149 -0
  463. data/spec/unit/view_helpers/display_name_spec.rb +41 -0
  464. data/spec/unit/view_helpers/download_format_links_helper_spec.rb +39 -0
  465. data/spec/unit/view_helpers/fields_for_spec.rb +50 -0
  466. data/spec/unit/view_helpers/form_helper_spec.rb +56 -0
  467. data/spec/unit/view_helpers/method_or_proc_helper_spec.rb +101 -0
  468. data/spec/unit/views/components/action_list_popover_spec.rb +30 -0
  469. data/spec/unit/views/components/attributes_table_spec.rb +230 -0
  470. data/spec/unit/views/components/batch_action_popover_spec.rb +33 -0
  471. data/spec/unit/views/components/blank_slate_spec.rb +17 -0
  472. data/spec/unit/views/components/columns_spec.rb +142 -0
  473. data/spec/unit/views/components/index_list_spec.rb +32 -0
  474. data/spec/unit/views/components/paginated_collection_spec.rb +227 -0
  475. data/spec/unit/views/components/panel_spec.rb +51 -0
  476. data/spec/unit/views/components/popover_spec.rb +33 -0
  477. data/spec/unit/views/components/sidebar_section_spec.rb +37 -0
  478. data/spec/unit/views/components/site_title_spec.rb +78 -0
  479. data/spec/unit/views/components/status_tag_spec.rb +95 -0
  480. data/spec/unit/views/components/table_for_spec.rb +201 -0
  481. data/spec/unit/views/pages/form_spec.rb +35 -0
  482. data/spec/unit/views/pages/layout_spec.rb +63 -0
  483. data/spec/unit/views/pages/show_spec.rb +20 -0
  484. data/spec/unit/views/tabbed_navigation_spec.rb +149 -0
  485. data/tasks/docs.rake +37 -0
  486. data/tasks/js.rake +32 -0
  487. data/tasks/parallel_tests.rake +60 -0
  488. data/tasks/test.rake +79 -0
  489. data/tasks/yard.rake +7 -0
  490. metadata +896 -0
data/CHANGELOG.md ADDED
@@ -0,0 +1,1056 @@
1
+ ## 1.0.0 (unreleased) - [compare](https://github.com/gregbell/active_admin/compare/v0.6.1...master)
2
+
3
+ ### Major Changes
4
+ * Migration from Metasearch to Ransack [#1979][] by [@seanlinsley][]
5
+ * Rails 4 support [#2326][] by many people :heart:
6
+
7
+ ### Enhancements
8
+ * Make AA ORM-agnostic [#2545][] by [@johnnyshields][]
9
+ * Add multi-record support to `attributes_table_for` [#2544][] by [@zorab47][]
10
+ * Table CSS classes are now prefixed to prevent clashes [#2532][] by [@TimPetricola][]
11
+ * Allow Inherited Resources shorthand for redirection [#2001][] by [@seanlinsley][]
12
+ ```ruby
13
+ controller do
14
+ # Redirects to index page instead of rendering udpated resource
15
+ def update
16
+ update!{ collection_path }
17
+ end
18
+ end
19
+ ```
20
+
21
+ * Accept block for download links [#2040][] by [@potatosalad][]
22
+ ```ruby
23
+ index download_links: ->{ can?(:view_all_download_links) || [:pdf] }
24
+ ```
25
+
26
+ ### Security Fixes
27
+
28
+ * Prevents potential DOS attack via Ruby symbols [#1926][] by [@seanlinsley][]
29
+
30
+ ### Bug Fixes
31
+
32
+ * Fixes filters for `has_many :through` relationships [#2541][] by [@shekibobo][]
33
+ * "New" action item now only shows up on the index page bf659bc by [@seanlinsley][]
34
+ * Fixes comment creation bug with aliased resources 9a082486 by [@seanlinsley][]
35
+ * Fixes the deletion of `:if` and `:unless` from filters [#2523][] by [@PChambino][]
36
+
37
+ ## 0.6.2 - [compare](https://github.com/gregbell/active_admin/compare/v0.6.1...v0.6.2)
38
+
39
+ * Patches MetaSearch bug for attributes ending in "ne" d5db9ff4 by [@seanlinsley][]
40
+
41
+ ## 0.6.1 - [compare](https://github.com/gregbell/active_admin/compare/v0.6.0...v0.6.1)
42
+
43
+ ### Features
44
+
45
+ * OmniAuth provider links now automatically appear on the login page [#2088][] by [@henrrrik][]
46
+ * Menu items can now properly overflow [#2046][] by [@maax][]; later updated in [#2125][] by [@ball-hayden][]
47
+ * Favicon support [#2348][] by [@stereoscott][]
48
+ * HABTM filters [#1928][] by [@seanlinsley][]
49
+ ```ruby
50
+ # (assuming Foo HABTM Bars)
51
+ ActiveAdmin.register Foo do
52
+ filter :bars
53
+ end
54
+ ```
55
+
56
+ * Advanced string filters [#2096][] by [@joseluistorres][]; later updated in [#2228][] by [@seanlinsley][]
57
+ * Select filters now respect custom MetaSerch search methods [#2420][] by [@seanlinsley][]
58
+ * The navbar now links to the current user's profile [#2395][] by [@seanlinsley][]
59
+
60
+ ### Bug Fixes
61
+
62
+ * The CSS encapsulation from 0.6.0 has been rolled back [#1952][] by [@tinynumbers][]
63
+ * Fixes problem where extra `/` route was being generated [#2062][] by [@jbhannah][]
64
+ * `IndexAsBlog` now renders title/body procs in the view context [#2087][] by [@macfanatic][]
65
+ * Fixes `route_instance_path` for `belongs_to` resources [#2099][] by [@pcreux][]
66
+ * Fixes breadcrumb links for `belongs_to` resources [#2090][] by [@seanlinsley][]
67
+ * Fixes ID regression, again using `to_param` [#2175][] by [@cknoxrun][]
68
+ * Fixes `check_box_checked?` bug [#2186][] by [@seanlinsley][]; later updated in [#2221][] by [@dmfrancisco][]
69
+ * Ensures that assets can only be registered once [#2139][] by [@seanlinsley][]
70
+ * Makes breadcrumbs respect the decorator [#2315][] by [@amiel][]
71
+ * CSV download links now respect pagination [#2419][] by [@seanlinsley][]
72
+ * Panels no longer escape html-safe entities [#2403][] by [@zorab47][]
73
+
74
+ ### Enhancements
75
+
76
+ * Adds option to "undecorate" resource when building forms [#2085][] by [@amiel][]
77
+ * Adds `:pagination_total` option to index to hide count for large databases [#2333][] by [@joseluistorres][]
78
+ * Adds [better_errors](https://github.com/charliesome/better_errors) gem for a better AA development experience [#2095][] by [@seanlinsley][]
79
+ * Scopes now support blocks for the `:default` option [#2084][] by [@macfanatic][]
80
+ * `:if` and `:unless` options added to `scope_to` [#2089][] by [@macfanatic][]
81
+ * Renames Comment to AdminComment [#2060][] by [@jbhannah][]; later replaced by [#2113][]
82
+ * Improves Comments UI and adds config settings [#2113][] by [@seanlinsley][]
83
+ ```ruby
84
+ config.show_comments_in_menu = false # Defaults to true
85
+ config.comments_registration_name = 'AdminComment' # Defaults to 'Comment'
86
+ ```
87
+
88
+ * `has_many` forms
89
+ * Adds 'has_many_delete' CSS class to `li` elements [#2054][] by [@shekibobo][]
90
+ * Adds `:heading` option to customize the heading displayed [#2068][] by [@coreyward][]
91
+ * Adds `:allow_destroy` option to add in a checkbox to the form to delete records [#2071][] by [@shekibobo][]
92
+ * Adds `:new_record` option to hide "new" button [#2134][] by [@developer88][]
93
+ * translations
94
+ * German (Switzerland), English (UK) locales added [#1916][] by [@psy-q][]
95
+ * Danish locale updated [#2154][] by [@jokklan][]
96
+ * Bulgarian locale updated [#2150][] by [@mitio][]
97
+ * Ukrainian locale added [#2258][] by [@valdemarua][]
98
+ * Mexican Spanish locale added [#2319][] by [@neoriddle][]
99
+ * Japanese locale updated [#2416][] by [@nappa][]
100
+ * move filter translation into `SearchMethodSelect` [#2231][] by [@seanlinsley][]
101
+ * fix plural translations for default `batch_action` [#2255][] by [@mindhalt][]
102
+ * In development, load each individual AA JS file [#2215][] by [@tank-bohr][]
103
+ * Removes Railtie, only using Rails Engine [#2162][] by [@jherdman][]
104
+ * Excludes associations from `display_name` helper [#2147][] by [@seanlinsley][]
105
+ * Prevents new AA::Application instances from using the same `namespace` hash [#2313][] by [@seanlinsley][]
106
+ * Moves hard-coded SASS colors into variables [#2454][] by [@ilyakatz][]
107
+
108
+ ### Cleanup
109
+
110
+ * Cucumber step definitions refactor [#2015][] by [@seanlinsley][]
111
+ * Misc cleanup in [#2075][] and [#2107][] by [@seanlinsley][]
112
+ * Removes messy spacing from `AdminUser` generator file [#2058][] by [@lupinglade][]
113
+ * Fixes documentation formatting [#2083][] by [@amiel][]
114
+ * Deprecated settings & code removed [#2165][] by [@seanlinsley][]
115
+
116
+ ## 0.6.0 - [compare](https://github.com/gregbell/active_admin/compare/v0.5.1...v0.6.0)
117
+
118
+ ### Bug Fixes
119
+
120
+ * Fix conflict with Redcloth [#1805][] by [@adrienkohlbecker][]
121
+ * Add missing batch actions translations. [#1788][] by [@EtienneDepaulis][]
122
+ * JS fix for batch actions checkbox toggling [#1947][] by [@ai][]
123
+ * Fixed routing bug for root namespace [#2043][] by [@seanlinsley][] and [@gregbell][]
124
+
125
+ ### Enhancements
126
+
127
+ * Rubinis compatability change over block variables [#1871][] by [@dbussin][]
128
+ * Compatability with Draper 1.0 release [#1896][] by [@hakanensari][]
129
+ * Fixed references to "dashboards.rb" in locales, since file doesn't exist [#1873][] by [@ryansch][]
130
+ * Removing deprecated bourbon box-shadow mixin [#1913][] by [@stereoscott][]
131
+ * More Japanese localizations [#1929][] by [@johnnyshields][]
132
+ * Devise lockable module now supported by default [#1933][] by [@Bishop][]
133
+ * Index table now uses a unique DOM id (`#index_table_posts` instead of `#posts`) [#1966][] by [@TiagoCardoso1983][]
134
+ * Coffeescript 1.5 compatability as constructors no longer return a value [#1940][] by [@ronen][]
135
+ * Allow options to be passed to the Abre element for rows in `attributes_table` [#1439][] by [@seanlinsley][]
136
+ * Gender neutral Spanish translations [#1973][] by [@laffinkippah][]
137
+ * Adds the ability to use `starts_with` and `ends_with` in string filters [#1962][] by [@rmw][]
138
+ * Adds support for translating resources when registered with `:as` [#2044][] by [@seanlinsley][]
139
+ * Scopes are no longer hidden when empty filter results [#1804][] by [@seanlinsley][]
140
+ * Dynamic scope names with procs [#2018][] by [@seanlinsley][]
141
+ * Filters now support the `:if` optional argument [#1801][] by [@seanlinsley][]
142
+ * Member & collection actions support multiple HTTP methods for the same action [#2000][] by [@rdsoze][]
143
+
144
+ ### Features
145
+
146
+ * Authorization DSL including a default CanCan adapter [#1817][] by [@pcreux][] and [@gregbell][]
147
+ * New "actions" DSL for customizing actions on index listing [#1834][] by [@ejholmes][]
148
+ * Index title can now be set via a proc [#1861][] by [@jamesalmond][]
149
+ * Can now disable `download_links` per resource, index collection or globally throughout AA [#1908][] by [@TBAA][]
150
+ * Filters: add ability to search for blank/null fields with boolean search [#1893][] by [@whatcould][]
151
+ * New `navigation_menu` DSL for menu system [#1967][] by [@macfanatic][] and [@gregbell][]
152
+ * Support segmented control switch between different index styles [#1745][] by [@joshuacollins85][]
153
+
154
+ ### Other
155
+
156
+ * Updated documentation for formtastic deprecated f.buttons [#1867][] by [@ericcumbee][]
157
+ * Copyright updated for 2013 [#1937][] by [@snapapps][]
158
+
159
+ ### Contributors
160
+
161
+ 327 Commits by 42 authors
162
+
163
+ * Adrien Kohlbecker
164
+ * Alexandr Prudnikov
165
+ * Andrew Pietsch
166
+ * Andrey A.I. Sitnik
167
+ * Andrey Rozhkovsky
168
+ * Anthony Zacharakis
169
+ * Bartlomiej Niemtur
170
+ * David DIDIER
171
+ * David Reese
172
+ * Sean Linsley
173
+ * Dirkjan Bussink
174
+ * Dominik Masur
175
+ * Eric Cumbee
176
+ * Eric J. Holmes
177
+ * Etienne Depaulis
178
+ * Gosha Arinich
179
+ * Greg Bell
180
+ * Ian Carroll
181
+ * James Almond
182
+ * Johnny Shields
183
+ * Joshua Collins
184
+ * Kieran Klaassen
185
+ * Luís Ramalho
186
+ * Matt Brewer
187
+ * Nathaniel Bibler
188
+ * Olek Janiszewski
189
+ * Philippe Creux
190
+ * Raison Dsouza
191
+ * Rebecca Miller-Webster
192
+ * Roman Sklenar
193
+ * Roman Sklenář
194
+ * Ryan Schlesinger
195
+ * Scott Meves
196
+ * Sergey Pchelincev
197
+ * Simon Menke
198
+ * Tiago Cardoso
199
+ * Travis Pew
200
+ * WU Jun
201
+ * laffinkippah
202
+ * ronen barzel
203
+ * тιηуηυмвєяѕ
204
+
205
+ ## 0.5.1 - [compare](https://github.com/gregbell/active_admin/compare/v0.5.0...v0.5.1)
206
+
207
+ ### Enhancements
208
+
209
+ * Developer can pass options for CSV generation. [#1626][] by [@rheaton][]
210
+ ```ruby
211
+ ActiveAdmin.register Post do
212
+ csv options: {force_quotes: true} do
213
+ column :title
214
+ end
215
+ end
216
+ ```
217
+
218
+ * Breadcrumb links can be customized by [@simonoff][]
219
+ ```ruby
220
+ ActiveAdmin.register Post do
221
+ breadcrumb do
222
+ [
223
+ link_to("My account", account_path(current_user))
224
+ ]
225
+ end
226
+ end
227
+ ```
228
+
229
+ * Support proc for parent options on menus [#1664][] by [@shell][]
230
+ ```ruby
231
+ ActiveAdmin.register Post do
232
+ menu parent: proc { I18n.t("admin") }
233
+ end
234
+ ```
235
+
236
+ * Support automatic use of Decorators. [#1117][] by [@amiel][] and [#1647][] by [@dapi][]
237
+ ```ruby
238
+ ActiveAdmin.register Post do
239
+ decorate_with PostDecorator
240
+ end
241
+ ```
242
+
243
+ * Allow blacklisting of filters with 'remove_filter' [#1609][] by [@tracedwax][]
244
+ ```ruby
245
+ ActiveAdmin.register Post do
246
+ remove_filter :author
247
+ end
248
+ ```
249
+
250
+ * ActiveAdmin i18n translations can be overwritten in your rails
251
+ application locales. [#1775][] by [@caifara][]
252
+ * Add "Powered by" to translations. [#1783][] by [@sunny][]
253
+ * Forms accept two level deeps has_many. [#1699][] by [@kerberoS][] and tests in [#1782][] by [@ptn][]
254
+ * Extract download_format_links into helper [#1752][] by [@randym][]
255
+ * Add support for semantic errors [#905][] by [@robdiciuccio][]
256
+ * Add support for boolean inputs [#1668][] by [@orendon][]
257
+ * Support subURI on logout [#1681][] by [@yawn][]
258
+
259
+ ### Bug fix
260
+ * Apply before_filter to BaseController [#1683][] by [@yorch][]
261
+ * ... and much more.
262
+
263
+ ### Contributions
264
+
265
+ 156 commits (49 Pull Requests) by 51 contributors.
266
+
267
+ ## 0.5.0 - [compare](https://github.com/gregbell/active_admin/compare/v0.4.4...v0.5.0)
268
+
269
+ ### Enhancements
270
+
271
+ * Created new view components (Footer, TitleBar, Header, UtilityNav) to more
272
+ easily customize the views in Active Admin and per namespace. ([@gregbell][])
273
+ * All CSS is now encapsulated under the `body.active_admin` class. This may
274
+ change the precedence of styles that you created to override or use in
275
+ other areas of your application.
276
+ * Dashboards are now implemented as pages. For more details of how to configure
277
+ a page, checkout http://activeadmin.info/docs/9-custom-pages.html
278
+ * Root route can be set to any controller#action using `#root_to`.
279
+ * Batch Actions allows you to select entries on index page and perform
280
+ an action against them.
281
+ * CSV separators are configurable.
282
+ * Lot of bug fixes.
283
+
284
+ ### Deprecations
285
+
286
+ * Removed all references to ActiveAdmin::Renderer. If you were using these
287
+ please update code to use an Arbre component. Removed
288
+ `ActiveAdmin:Views::HeaderRender` and replaced with
289
+ `ActiveAdmin::Views::Header` component.
290
+ * ActiveAdmin::Menu and ActiveAdmin::MenuItem API has changed. If you were
291
+ creating custom menu items, the builder syntax has changed to. Menu#add now
292
+ accepts a MenuItem, instead of building the menu item for you.
293
+ * `ActiveAdmin::Dashboards.build` is deprecated in favour of generating a page
294
+ and using the new `config.root_to` option.
295
+ * Arbre is now a gem on its own.
296
+
297
+ ### Contributions
298
+
299
+ 561 commits (142 Pull Requests) by 88 contributors.
300
+
301
+ ## 0.4.4 - [compare](https://github.com/gregbell/active_admin/compare/v0.4.3...v0.4.4)
302
+
303
+ ### Dependencies
304
+
305
+ * Use `formtastic` ~> 2.1.1 until AA 0.5.0 is released
306
+ * Use `inherited_resources` >= 1.3.1 (ensure flash messages work)
307
+
308
+ ## 0.4.3 - [compare](https://github.com/gregbell/active_admin/compare/v0.4.2...v0.4.3)
309
+
310
+ ### Bug Fixes
311
+
312
+ * [#1063][]: Fix comment issues when using postgres ([@jancel][])
313
+
314
+ ## 0.4.2 - [compare](https://github.com/gregbell/active_admin/compare/v0.4.1...v0.4.2)
315
+
316
+ ### Enhancements
317
+
318
+ * [#822][]: Automatically include js and css to precompile list ([@jschwindt][])
319
+ * [#1033][]: Site title accepts a proc that is rendered in the context
320
+ of the view ([@pcreux][])
321
+ * [#70][]: Form blocks are now rendered within the context of the view ([@gregbell][])
322
+ * [#70][]: Filter's collections are now eval'd in the context of the view ([@gregbell][])
323
+ * [#1032][]: The html body now includes a class for the namespace name ([@mattvague][])
324
+ * [#1013][]: Hide the count from one specific scope using `:show_count => false`
325
+ ([@latortuga][])
326
+ * [#1023][]: Add localization support for comments ([@MoritzMoritz][])
327
+
328
+ ### Bug Fixes
329
+
330
+ * [#34][]: Comments now work with models using string ids ([@jancel][])
331
+ * [#1041][]: When `table_for` collection is empty it no longer outputs
332
+ a blank array in Ruby 1.9 ([@jancel][], [#1016][])
333
+ * [#983][]: Fixed compatibility with pry-rails ([@pcreux][])
334
+ * [#409][]: Install generator handles custom class names for user ([@gregbell][])
335
+
336
+ ### Contributors
337
+
338
+ 42 Commits by 10 authors
339
+
340
+ * Allen Huang
341
+ * Daniel Lepage
342
+ * Thibaut Barrère
343
+ * Drew Ulmer
344
+ * Juan Schwindt
345
+ * Moritz Behr
346
+ * Jeff Ancel
347
+ * Matt Vague
348
+ * Greg Bell
349
+ * Philippe Creux
350
+
351
+
352
+ ## 0.4.1 - [compare](https://github.com/gregbell/active_admin/compare/v0.4.0...v0.4.1)
353
+
354
+ ### Enhancements
355
+
356
+ * [#865][]: Pages support the `#page_action` to add custom controller actions
357
+ to a page ([@BoboFraggins][])
358
+ * Columns component now supports column spans, max and min widths ([@gregbell][])
359
+ * [#497][]: Custom pagination settings per resource ([@pcreux][])
360
+ * [#993][]: Login form now focuses on email ([@mattvague][])
361
+ * [#865][]: Add `:if` support to sidebar sections ([@BoboFraggins][])
362
+ * [#865][]: Added `:scope_count => false` to the index to hide scope counts
363
+ in generated scopes ([@BoboFraggins][])
364
+
365
+ ### Bug Fixes
366
+
367
+ * [#101][]: Global nav now works with RackBaseURI ([@gregbell][])
368
+ * [#960][]: Global nav works when scoped in rails routes ([@gregbell][])
369
+ * [#994][]: Fix index page check collection.limit(1).exists? causes exception when
370
+ ordering by virtual colum ([@latortuga][], [@gregbell][])
371
+ * [#971][]: Fix SQL when sorting tables with a column named "group" ([@ggilder][])
372
+
373
+ ### Dependencies
374
+
375
+ * [#978][]: Support for Inherited Resources 1.3.0 ([@fabiormoura][])
376
+
377
+ ### Contributors
378
+
379
+ 75 Commits by 12 authors
380
+
381
+ * Bruno Bonamin
382
+ * David Radcliffe
383
+ * Dinesh Majrekar
384
+ * Erik Michaels-Ober
385
+ * Fábio Maia
386
+ * Gabriel Gilder
387
+ * Greg Bell
388
+ * Kyle Macey
389
+ * Matt Vague
390
+ * Oldani Pablo
391
+ * Peter Fry
392
+ * Philippe Creux
393
+ * Søren Houen
394
+
395
+
396
+ ## 0.4.0 - [compare](https://github.com/gregbell/active_admin/compare/v0.3.4...v0.4.0)
397
+
398
+ ### Upgrade Notes
399
+
400
+ If you're running on Rails 3.0.x, make sure to run `rails generate active_admin:assets`
401
+ since we've changed both the CSS and JS files.
402
+
403
+ ### Deprecations
404
+
405
+ * In the initializer `config.allow_comments_in = []` is now
406
+ `config.allow_comments = true`. Use the new namespace specific configurations
407
+ to allow or disallow configuration within a specific namespace.
408
+ * Removed `Object#to_html` in favour of `to_s`. Any Arbre components
409
+ implementing a `to_html` method need to be updated to use `to_s` instead.
410
+
411
+ ### New Features
412
+
413
+ * Namespace specific configurations in the initializer ([@gregbell][])
414
+ * [#624][]: Set an image as the site title using `config.site_title_image` in the
415
+ Active Admin initializer. ([@mattvague][])
416
+ * [#758][]: Create a standalone page in Active Admin using
417
+ `ActiveAdmin.register_page` ([@pcreux][])
418
+ * [#723][]: Register stylesheets with a media type ([@macfanatic][])
419
+
420
+ ### Enhancements
421
+
422
+ * [#428][]: Paginated Collection now supports `:param_name` and `:download_links`.
423
+ These two additions allow you to use the `paginated_collection` component multiple
424
+ times on show screens. ([@samvincent][])
425
+ * [#527][]: Refactored all form helpers to use Formtastic 2([@ebeigarts][])
426
+ * [#551][]: Dashboards can now be conditionally displayed using `:if` ([@samvincent][])
427
+ * [#555][]: scopes now accept `:if`. They only get displayed if the proc returns true ([@macfanatic][])
428
+ * [#601][]: Breadcrumbs are internationalized ([@vairix-ssierra][])
429
+ * [#605][]: Validations on ActiveAdmin::Comment should work with
430
+ `accepts_nested_attributes_for` ([@DMajrekar ][])
431
+ * [#623][]: Index table can sort on any table using `:sort => 'table.column'` ([@ZequeZ][])
432
+ * [#638][]: Add `:label` option to `status_tag` component ([@fbuenemann][])
433
+ * [#644][]: Added proper I18n support to pagination ([@fbuenemann][])
434
+ * [#689][]: Scopes preserve title when provided as a string ([@macfanatic][])
435
+ * [#711][]: Styles update. Now sexier and more refined design. Redesigned Scopes. Split
436
+ css into smaller files. ([@mattvague][])
437
+ * [#741][]: Default media type of css is now "all" instead of "screen" ([@sftsang][])
438
+ * [#751][]: Pagination numbers work with a custom `[@per_page][]` ([@DMajrekar][])
439
+ * `default_actions` in an index table only display implemented actions ([@watson][])
440
+
441
+ ### Bug Fixes
442
+
443
+ * [#590][]: Comments now work in the default namespace ([@jbarket][])
444
+ * [#780][]: Fix stack level too deep exception when logout path is setup to use
445
+ `:logout_path` named route. ([@george][])
446
+ * [#637][]: Fix scope all I18n ([@fbuenemann][])
447
+ * [#496][]: Remove global `Object#to_html` [@ebeigarts][]
448
+ * [#470][], [#154][]: Arbre properly supports blocks that return Numeric values
449
+ ([@bobbytables][], [@utkarshkukreti][], [@gregbell][])
450
+ * [#897][]: Fix count display for collections with GROUP BY [@comboy][]
451
+
452
+ ### Dependencies
453
+
454
+ * [#468][]: Removed vendored jQuery. Now depends on the jquery-rails gem. If you're
455
+ running Rails 3.0.x (no asset pipeline), make sure to run
456
+ `rails generate active_admin:assets` to generate the correct files. ([@gregbell][])
457
+ * [#527][]: Active Admin now requires Formtastic 2.0 or greater ([@ebeigarts][])
458
+ * [#711][]: Active admin now depends on Bourbon > 1.0.0. If you're using Rails
459
+ 3.0.x, make sure to run `rails generate active_admin:assets` to ensure you
460
+ have the correct css files ([@mattvague][])
461
+ * [#869][]: Upgraded Kaminari to >= 0.13.0 and added support for
462
+ `Kaminari.config.page_method_name`. Active Admin should now be happy if
463
+ `will_paginate` is installed with it. ([@j][]-manu)
464
+ * [#931][]: Support for Rails 3.2 added ([@mperham][])
465
+
466
+ ### Contributors
467
+
468
+ 274 commits by 42 authors
469
+
470
+ * Greg Bell
471
+ * Philippe Creux
472
+ * Matt Vague
473
+ * Felix Bünemann
474
+ * Matthew Brewer
475
+ * Edgars Beigarts
476
+ * Mike Perham
477
+ * Sam Vincent
478
+ * Kieran Klaassen
479
+ * Jonathan Barket
480
+ * Ankur Sethi
481
+ * Dinesh Majrekar
482
+ * comboy
483
+ * Juan E. Pemberthy
484
+ * Leandro Moreira
485
+ * Manu
486
+ * Marc Riera
487
+ * Radan Skorić
488
+ * Rhys Powell
489
+ * Sebastian Sierra
490
+ * Sherman Tsang
491
+ * Szymon Przybył
492
+ * Thomas Watson Steen
493
+ * Tim Habermaas
494
+ * Yara Mayer
495
+ * Zequez
496
+ * asancio
497
+ * emmek
498
+ * Alexey Noskov
499
+ * igmizo
500
+ * Alli
501
+ * Bendik Lynghaug
502
+ * Douwe Homans
503
+ * Eric Koslow
504
+ * Eunsub Kim
505
+ * Garami Gábor
506
+ * George Anderson
507
+ * Henrik Hodne
508
+ * Ivan Storck
509
+ * Jeff Dickey
510
+ * John Ferlito
511
+ * Josef Šimánek
512
+
513
+
514
+ ## 0.3.4 - [compare](https://github.com/gregbell/active_admin/compare/v0.3.3...v0.3.4)
515
+
516
+ 2 commits by 2 authors
517
+
518
+ ### Bug Fixes
519
+
520
+ * Fix reloading issues across operating systems.
521
+ * Fix issue where SASS was recompiling on every request. This can seriously
522
+ decrease the load time of applications when running in development mode.
523
+ Thanks [@dhiemstra][] for tracking this one down!
524
+
525
+ ### Contributors
526
+
527
+ * Danny Hiemstra
528
+ * Greg Bell
529
+
530
+ ## 0.3.3 - [compare](https://github.com/gregbell/active_admin/compare/v0.3.2...v0.3.3)
531
+
532
+ 1 commit by 1 author
533
+
534
+ ### Enhancements
535
+
536
+ * Only reload Active Admin when files in the load paths have changed. This is a
537
+ major speed increase in development mode. Also helps with memory consumption
538
+ because we aren't reloading Active admin all the time.
539
+
540
+ ### Contributors
541
+
542
+ * Greg Bell
543
+
544
+ ## 0.3.2 - [compare](https://github.com/gregbell/active_admin/compare/v0.3.1...v0.3.2)
545
+
546
+ 45 commits by 15 contributors
547
+
548
+ ### Enhancements
549
+
550
+ * Site title can now be a link. Use config.site_title_link in
551
+ config/initializers/active_admin.rb
552
+ * i18n support for Japanese
553
+ * i18n support for Bulgarian
554
+ * i18n support for Swedish
555
+
556
+ ### Bug Fixes
557
+
558
+ * DeviseGenerator respects singular table names
559
+ * Active Admin no longer assumes sass-rails is installed
560
+ * Arbre::Context passes methods to the underlying html which fixes
561
+ issues on different types of servers (and on Heroku)
562
+ * [#45][]: Fix for multibyte characters ([@tricknotes][])
563
+ * [#505][]: Fix titlebar height when no breadcrumb ([@mattvague][])
564
+ * Fixed vertical align in dashboard
565
+ * Fixed i18n path's for multi-word model names
566
+
567
+ ### Dependencies
568
+
569
+ * Formtastic 2.0.0 breaks Active Admin. Locking to < 2.0.0
570
+
571
+ ### Contributors
572
+
573
+ * Amiel Martin
574
+ * Christian Hjalmarsson
575
+ * Edgars Beigarts
576
+ * Greg Bell
577
+ * Jan Dupal
578
+ * Joe Van
579
+ * Mark Roghelia
580
+ * Mathieu Martin
581
+ * Matt Vague
582
+ * Philippe Creux
583
+ * Ryunosuke SATO
584
+ * Sam Vincent
585
+ * Trace Wax
586
+ * Tsvetan Roustchev
587
+ * l4u
588
+
589
+ ## 0.3.1 - [compare](https://github.com/gregbell/active_admin/compare/v0.3.0...v0.3.1)
590
+
591
+ * Only support InheritedResources up to 1.2.2
592
+
593
+ ## 0.3.0 - [compare](https://github.com/gregbell/active_admin/compare/v0.2.2...v0.3.0)
594
+
595
+ 326 commits by 35 contributors
596
+
597
+ ### New Features
598
+
599
+ * I18n! Now supported in 10 languages!
600
+ * Customizeable CSV ([@pcreux][], [@gregbell][])
601
+ * Menus now support `if` and `priority` (Moritz Lawitschka)
602
+ * Rails 3.1 support
603
+ * Asset pipeline support ([@gregbell][])
604
+ * `skip_before_filter` now supported in DSL ([@shayfrendt][])
605
+ * Added a blank slate design ([@mattvague][])
606
+ * Collection and Member actions use the Active Admin layout ([@gregbell][])
607
+
608
+ ### Enhancements
609
+
610
+ * Better I18n config file loading ([@fabiokr][])
611
+ * `TableFor` now supports I18n headers ([@fabiokr][])
612
+ * `AttributesTable` now supports I18n attributes ([@fabiokr][])
613
+ * Member actions all use CSS class `member_link` ([@doug316][])
614
+ * Made `status_tag` an Arbre component ([@pcreux][])
615
+ * CSV downloads have sexy names such as "articles-2011-06-21.csv" ([@pcreux][])
616
+ * Created `ActiveAdmin::Setting` to easily create settings ([@gregbell][])
617
+ * New datepicker styles ([@mattvague][])
618
+ * Set `[@page_title][]` in member action to render a custom title ([@gregbell][])
619
+ * [#248][]: Settable logout link options in initializer ([@gregbell][])
620
+ * Added a DependencyChecker that warns if dependencies aren't met ([@pcreux][])
621
+
622
+ ### Bug Fixes
623
+
624
+ * [#52][]: Fix update action with STI models ([@gregbell][])
625
+ * [#122][]: Fix sortable columns on nested resources ([@knoopx][])
626
+ * Fix so that Dashboard Sections can appear in root namespace ([@knoopx][])
627
+ * [#131][]: Fixed `status_tag` with nil content ([@pcreux][])
628
+ * [#110][]: Fixed dropdown menu floats in Firefox ([@mattvague][])
629
+ * Use quoted table names ([@krug][])
630
+ * Fixed CSS float of `.paginated_collection_contents` bug in Firefox ([@mattvague][])
631
+ * Removed unwanted gradient in IE in attribute table headers ([@emzeq][])
632
+ * [#222][]: Added `Arbre::Context#length` for Rack servers ([@gregbell][])
633
+ * [#255][]: Fixed problem with dropdown menus in IE8 and IE9 ([@mattvague][])
634
+ * [#235][]: Default sort order should use primary_key ([@gregbell][])
635
+ * [#197][]: Fixed issues with #form params disappearing ([@rolfb][])
636
+ * [#186][]: Fixes for when `default_namespace = false` ([@gregbell][])
637
+ * [#135][]: Comments on STI classes redirect correctly ([@gregbell][])
638
+ * [#77][]: Fixed performance issue where ActiveRecord::Base.all was being called ([@pcreux][])
639
+ * [#332][]: Fixed Devise redirection when in false namespace ([@gregbell][])
640
+ * [#171][]: Fixed issue where class names would clash with HTML object names ([@gregbell][])
641
+ * [#381][]: Fixed issues with Devise < 1.2 ([@pcreux][])
642
+ * [#369][]: Added support for pluralized model names such as News ([@gregbell][])
643
+ * [#42][]: Default forms work with polymorphic associations ([@mattvague][])
644
+
645
+ ### Dependencies
646
+
647
+ * Switched from will_paginate to Kaminari for pagination ([@mwindwer][])
648
+ * Removed dependency on InheritedViews ([@gregbell][])
649
+ * Removed Jeweler. Using Bundler and a gemspec ([@gregbell][])
650
+
651
+ ### Contributors
652
+
653
+ * Armand du Plessis
654
+ * Aurelio Agundez
655
+ * Bruno Bonamin
656
+ * Chris Ostrowski
657
+ * Corey Woodcox
658
+ * DeLynn Berry
659
+ * Doug Puchalski
660
+ * Fabio Kreusch
661
+ * Greg Bell
662
+ * Ismael G Marin C
663
+ * Jackson Pires
664
+ * Jesper Hvirring Henriksen
665
+ * Josef Šimánek
666
+ * Jørgen Orehøj Erichsen
667
+ * Liborio Cannici
668
+ * Matt Vague
669
+ * Matthew Windwer
670
+ * Moritz Lawitschka
671
+ * Nathan Le Ray
672
+ * Nicolas Mosconi
673
+ * Philippe Creux
674
+ * Rolf Bjaanes
675
+ * Ryan D Johnson
676
+ * Ryan Krug
677
+ * Shay Frendt
678
+ * Steve Klabnik
679
+ * Tiago Rafael Godinho
680
+ * Toby Hede
681
+ * Vijay Dev
682
+ * Víctor Martínez
683
+ * doabit
684
+ * hoverlover
685
+ * nhurst
686
+ * whatthewhat
687
+ * Łukasz Anwajler
688
+
689
+
690
+ ## 0.2.2 (2011-05-26) - [compare](https://github.com/gregbell/active_admin/compare/v0.2.1...v0.2.2)
691
+
692
+ 68 Commits by 13 Contributors
693
+
694
+ ### Features & Enhancements
695
+
696
+ * Arbre includes self closing tags ([#100][])
697
+ * Controller class & action added to body as CSS classes ([#99][])
698
+ * HAML is not required by default ([#92][])
699
+ * Devise login now respects Devise.authentication_keys ([#69][])
700
+ * Active Admin no longer uses <tt>ActiveRecord::Base#search</tt> ([#28][])
701
+ * Resource's can now override the label in the menu ([#48][])
702
+ * Subdirectories are now loaded in the Active Admin load path
703
+
704
+ ### Bug Fixes
705
+
706
+ * Sort order now includes table name ([#38][])
707
+ * Fixed table_for 'odd', 'even' row classes ([#96][])
708
+ * Fixed Devise installation if AdminUser already exists ([#95][])
709
+ * Fixed issues when ActiveAdmin.default_namespaces is false ([#32][])
710
+ * Added styles for missing HTML 5 inputs ([#31][])
711
+ * Fixed issue if adding empty Active Admin Comment ([#21][])
712
+ * Fixed layout issues in FF 4 ([#22][])
713
+ * Use Sass::Plugin.options[:css_location] instead of Rails.root ([#55][])
714
+
715
+ ### Test Suite
716
+
717
+ * Update RSpec to latest & fix specs (Thanks Ben Marini & Jeremt Ruppel!) ([#100][])
718
+ * Added tests for STI models ([#52][])
719
+
720
+ ### Contributors
721
+
722
+ * Ben Marini
723
+ * Bookis Smuin
724
+ * Caley Woods
725
+ * Doug Puchalski
726
+ * Federico Romero
727
+ * Greg Bell
728
+ * Ian MacLeod
729
+ * Jeremy Ruppel
730
+ * Jordan Sitkin
731
+ * Juha Suuraho
732
+ * Mathieu Martin
733
+ * Paul Annesley
734
+ * Philippe Creux
735
+
736
+ ## 0.2.1 (2011-05-12) - [compare](https://github.com/gregbell/active_admin/compare/v0.2.0...v0.2.1)
737
+
738
+ ### Bug Fixes
739
+ * Fixed issue with dashboard rendering a sidebar
740
+
741
+ ## 0.2.0 (2011-05-12) - [compare](https://github.com/gregbell/active_admin/compare/v0.1.1...v0.2.0)
742
+
743
+ 0.2.0 is essentially an entire re-write of Active Admin. Here are some
744
+ of the highlights. 250 commits. Enough said.
745
+
746
+ ### Features & Enhancements
747
+
748
+ * Full visual redesign
749
+ * Integrated Devise for authentication
750
+ * Brand new view and component layer called Arbre (Project coming soon)
751
+ * Added ActiveAdmin::Comments
752
+
753
+ ### Bug Fixes
754
+
755
+ * Too many to list! Been in production for close to a year
756
+
757
+ ## 0.1.1 (2010-09-15) - [compare](https://github.com/gregbell/active_admin/compare/v0.1.0...v0.1.1)
758
+
759
+ ### Bug Fixes
760
+
761
+ * Fixed issues running on Ruby 1.9.2
762
+
763
+ ## 0.1.0
764
+
765
+ * Initial release
766
+
767
+ <!--- The following link definition list is generated by PimpMyChangelog --->
768
+ [#21]: https://github.com/gregbell/active_admin/issues/21
769
+ [#22]: https://github.com/gregbell/active_admin/issues/22
770
+ [#28]: https://github.com/gregbell/active_admin/issues/28
771
+ [#31]: https://github.com/gregbell/active_admin/issues/31
772
+ [#32]: https://github.com/gregbell/active_admin/issues/32
773
+ [#34]: https://github.com/gregbell/active_admin/issues/34
774
+ [#38]: https://github.com/gregbell/active_admin/issues/38
775
+ [#42]: https://github.com/gregbell/active_admin/issues/42
776
+ [#45]: https://github.com/gregbell/active_admin/issues/45
777
+ [#48]: https://github.com/gregbell/active_admin/issues/48
778
+ [#52]: https://github.com/gregbell/active_admin/issues/52
779
+ [#55]: https://github.com/gregbell/active_admin/issues/55
780
+ [#69]: https://github.com/gregbell/active_admin/issues/69
781
+ [#70]: https://github.com/gregbell/active_admin/issues/70
782
+ [#77]: https://github.com/gregbell/active_admin/issues/77
783
+ [#92]: https://github.com/gregbell/active_admin/issues/92
784
+ [#95]: https://github.com/gregbell/active_admin/issues/95
785
+ [#96]: https://github.com/gregbell/active_admin/issues/96
786
+ [#99]: https://github.com/gregbell/active_admin/issues/99
787
+ [#100]: https://github.com/gregbell/active_admin/issues/100
788
+ [#101]: https://github.com/gregbell/active_admin/issues/101
789
+ [#110]: https://github.com/gregbell/active_admin/issues/110
790
+ [#122]: https://github.com/gregbell/active_admin/issues/122
791
+ [#131]: https://github.com/gregbell/active_admin/issues/131
792
+ [#135]: https://github.com/gregbell/active_admin/issues/135
793
+ [#154]: https://github.com/gregbell/active_admin/issues/154
794
+ [#171]: https://github.com/gregbell/active_admin/issues/171
795
+ [#186]: https://github.com/gregbell/active_admin/issues/186
796
+ [#197]: https://github.com/gregbell/active_admin/issues/197
797
+ [#222]: https://github.com/gregbell/active_admin/issues/222
798
+ [#235]: https://github.com/gregbell/active_admin/issues/235
799
+ [#248]: https://github.com/gregbell/active_admin/issues/248
800
+ [#255]: https://github.com/gregbell/active_admin/issues/255
801
+ [#332]: https://github.com/gregbell/active_admin/issues/332
802
+ [#369]: https://github.com/gregbell/active_admin/issues/369
803
+ [#381]: https://github.com/gregbell/active_admin/issues/381
804
+ [#409]: https://github.com/gregbell/active_admin/issues/409
805
+ [#428]: https://github.com/gregbell/active_admin/issues/428
806
+ [#468]: https://github.com/gregbell/active_admin/issues/468
807
+ [#470]: https://github.com/gregbell/active_admin/issues/470
808
+ [#496]: https://github.com/gregbell/active_admin/issues/496
809
+ [#497]: https://github.com/gregbell/active_admin/issues/497
810
+ [#505]: https://github.com/gregbell/active_admin/issues/505
811
+ [#527]: https://github.com/gregbell/active_admin/issues/527
812
+ [#551]: https://github.com/gregbell/active_admin/issues/551
813
+ [#555]: https://github.com/gregbell/active_admin/issues/555
814
+ [#590]: https://github.com/gregbell/active_admin/issues/590
815
+ [#601]: https://github.com/gregbell/active_admin/issues/601
816
+ [#605]: https://github.com/gregbell/active_admin/issues/605
817
+ [#623]: https://github.com/gregbell/active_admin/issues/623
818
+ [#624]: https://github.com/gregbell/active_admin/issues/624
819
+ [#637]: https://github.com/gregbell/active_admin/issues/637
820
+ [#638]: https://github.com/gregbell/active_admin/issues/638
821
+ [#644]: https://github.com/gregbell/active_admin/issues/644
822
+ [#689]: https://github.com/gregbell/active_admin/issues/689
823
+ [#711]: https://github.com/gregbell/active_admin/issues/711
824
+ [#723]: https://github.com/gregbell/active_admin/issues/723
825
+ [#741]: https://github.com/gregbell/active_admin/issues/741
826
+ [#751]: https://github.com/gregbell/active_admin/issues/751
827
+ [#758]: https://github.com/gregbell/active_admin/issues/758
828
+ [#780]: https://github.com/gregbell/active_admin/issues/780
829
+ [#822]: https://github.com/gregbell/active_admin/issues/822
830
+ [#865]: https://github.com/gregbell/active_admin/issues/865
831
+ [#869]: https://github.com/gregbell/active_admin/issues/869
832
+ [#897]: https://github.com/gregbell/active_admin/issues/897
833
+ [#905]: https://github.com/gregbell/active_admin/issues/905
834
+ [#931]: https://github.com/gregbell/active_admin/issues/931
835
+ [#960]: https://github.com/gregbell/active_admin/issues/960
836
+ [#971]: https://github.com/gregbell/active_admin/issues/971
837
+ [#978]: https://github.com/gregbell/active_admin/issues/978
838
+ [#983]: https://github.com/gregbell/active_admin/issues/983
839
+ [#993]: https://github.com/gregbell/active_admin/issues/993
840
+ [#994]: https://github.com/gregbell/active_admin/issues/994
841
+ [#1013]: https://github.com/gregbell/active_admin/issues/1013
842
+ [#1016]: https://github.com/gregbell/active_admin/issues/1016
843
+ [#1023]: https://github.com/gregbell/active_admin/issues/1023
844
+ [#1032]: https://github.com/gregbell/active_admin/issues/1032
845
+ [#1033]: https://github.com/gregbell/active_admin/issues/1033
846
+ [#1041]: https://github.com/gregbell/active_admin/issues/1041
847
+ [#1063]: https://github.com/gregbell/active_admin/issues/1063
848
+ [#1117]: https://github.com/gregbell/active_admin/issues/1117
849
+ [#1439]: https://github.com/gregbell/active_admin/issues/1439
850
+ [#1609]: https://github.com/gregbell/active_admin/issues/1609
851
+ [#1626]: https://github.com/gregbell/active_admin/issues/1626
852
+ [#1647]: https://github.com/gregbell/active_admin/issues/1647
853
+ [#1664]: https://github.com/gregbell/active_admin/issues/1664
854
+ [#1668]: https://github.com/gregbell/active_admin/issues/1668
855
+ [#1681]: https://github.com/gregbell/active_admin/issues/1681
856
+ [#1683]: https://github.com/gregbell/active_admin/issues/1683
857
+ [#1699]: https://github.com/gregbell/active_admin/issues/1699
858
+ [#1745]: https://github.com/gregbell/active_admin/issues/1745
859
+ [#1752]: https://github.com/gregbell/active_admin/issues/1752
860
+ [#1775]: https://github.com/gregbell/active_admin/issues/1775
861
+ [#1782]: https://github.com/gregbell/active_admin/issues/1782
862
+ [#1783]: https://github.com/gregbell/active_admin/issues/1783
863
+ [#1788]: https://github.com/gregbell/active_admin/issues/1788
864
+ [#1801]: https://github.com/gregbell/active_admin/issues/1801
865
+ [#1804]: https://github.com/gregbell/active_admin/issues/1804
866
+ [#1805]: https://github.com/gregbell/active_admin/issues/1805
867
+ [#1817]: https://github.com/gregbell/active_admin/issues/1817
868
+ [#1834]: https://github.com/gregbell/active_admin/issues/1834
869
+ [#1861]: https://github.com/gregbell/active_admin/issues/1861
870
+ [#1867]: https://github.com/gregbell/active_admin/issues/1867
871
+ [#1871]: https://github.com/gregbell/active_admin/issues/1871
872
+ [#1873]: https://github.com/gregbell/active_admin/issues/1873
873
+ [#1893]: https://github.com/gregbell/active_admin/issues/1893
874
+ [#1896]: https://github.com/gregbell/active_admin/issues/1896
875
+ [#1908]: https://github.com/gregbell/active_admin/issues/1908
876
+ [#1913]: https://github.com/gregbell/active_admin/issues/1913
877
+ [#1916]: https://github.com/gregbell/active_admin/issues/1916
878
+ [#1926]: https://github.com/gregbell/active_admin/issues/1926
879
+ [#1928]: https://github.com/gregbell/active_admin/issues/1928
880
+ [#1929]: https://github.com/gregbell/active_admin/issues/1929
881
+ [#1933]: https://github.com/gregbell/active_admin/issues/1933
882
+ [#1937]: https://github.com/gregbell/active_admin/issues/1937
883
+ [#1940]: https://github.com/gregbell/active_admin/issues/1940
884
+ [#1947]: https://github.com/gregbell/active_admin/issues/1947
885
+ [#1952]: https://github.com/gregbell/active_admin/issues/1952
886
+ [#1960]: https://github.com/gregbell/active_admin/issues/1960
887
+ [#1961]: https://github.com/gregbell/active_admin/issues/1961
888
+ [#1962]: https://github.com/gregbell/active_admin/issues/1962
889
+ [#1966]: https://github.com/gregbell/active_admin/issues/1966
890
+ [#1967]: https://github.com/gregbell/active_admin/issues/1967
891
+ [#1973]: https://github.com/gregbell/active_admin/issues/1973
892
+ [#1979]: https://github.com/gregbell/active_admin/issues/1979
893
+ [#2000]: https://github.com/gregbell/active_admin/issues/2000
894
+ [#2001]: https://github.com/gregbell/active_admin/issues/2001
895
+ [#2015]: https://github.com/gregbell/active_admin/issues/2015
896
+ [#2018]: https://github.com/gregbell/active_admin/issues/2018
897
+ [#2040]: https://github.com/gregbell/active_admin/issues/2040
898
+ [#2043]: https://github.com/gregbell/active_admin/issues/2043
899
+ [#2044]: https://github.com/gregbell/active_admin/issues/2044
900
+ [#2046]: https://github.com/gregbell/active_admin/issues/2046
901
+ [#2054]: https://github.com/gregbell/active_admin/issues/2054
902
+ [#2058]: https://github.com/gregbell/active_admin/issues/2058
903
+ [#2060]: https://github.com/gregbell/active_admin/issues/2060
904
+ [#2062]: https://github.com/gregbell/active_admin/issues/2062
905
+ [#2068]: https://github.com/gregbell/active_admin/issues/2068
906
+ [#2071]: https://github.com/gregbell/active_admin/issues/2071
907
+ [#2072]: https://github.com/gregbell/active_admin/issues/2072
908
+ [#2075]: https://github.com/gregbell/active_admin/issues/2075
909
+ [#2083]: https://github.com/gregbell/active_admin/issues/2083
910
+ [#2084]: https://github.com/gregbell/active_admin/issues/2084
911
+ [#2085]: https://github.com/gregbell/active_admin/issues/2085
912
+ [#2087]: https://github.com/gregbell/active_admin/issues/2087
913
+ [#2088]: https://github.com/gregbell/active_admin/issues/2088
914
+ [#2089]: https://github.com/gregbell/active_admin/issues/2089
915
+ [#2090]: https://github.com/gregbell/active_admin/issues/2090
916
+ [#2095]: https://github.com/gregbell/active_admin/issues/2095
917
+ [#2096]: https://github.com/gregbell/active_admin/issues/2096
918
+ [#2099]: https://github.com/gregbell/active_admin/issues/2099
919
+ [#2107]: https://github.com/gregbell/active_admin/issues/2107
920
+ [#2113]: https://github.com/gregbell/active_admin/issues/2113
921
+ [#2125]: https://github.com/gregbell/active_admin/issues/2125
922
+ [#2134]: https://github.com/gregbell/active_admin/issues/2134
923
+ [#2139]: https://github.com/gregbell/active_admin/issues/2139
924
+ [#2147]: https://github.com/gregbell/active_admin/issues/2147
925
+ [#2150]: https://github.com/gregbell/active_admin/issues/2150
926
+ [#2154]: https://github.com/gregbell/active_admin/issues/2154
927
+ [#2162]: https://github.com/gregbell/active_admin/issues/2162
928
+ [#2165]: https://github.com/gregbell/active_admin/issues/2165
929
+ [#2175]: https://github.com/gregbell/active_admin/issues/2175
930
+ [#2186]: https://github.com/gregbell/active_admin/issues/2186
931
+ [#2215]: https://github.com/gregbell/active_admin/issues/2215
932
+ [#2221]: https://github.com/gregbell/active_admin/issues/2221
933
+ [#2228]: https://github.com/gregbell/active_admin/issues/2228
934
+ [#2231]: https://github.com/gregbell/active_admin/issues/2231
935
+ [#2255]: https://github.com/gregbell/active_admin/issues/2255
936
+ [#2258]: https://github.com/gregbell/active_admin/issues/2258
937
+ [#2313]: https://github.com/gregbell/active_admin/issues/2313
938
+ [#2315]: https://github.com/gregbell/active_admin/issues/2315
939
+ [#2319]: https://github.com/gregbell/active_admin/issues/2319
940
+ [#2326]: https://github.com/gregbell/active_admin/issues/2326
941
+ [#2333]: https://github.com/gregbell/active_admin/issues/2333
942
+ [#2348]: https://github.com/gregbell/active_admin/issues/2348
943
+ [#2395]: https://github.com/gregbell/active_admin/issues/2395
944
+ [#2403]: https://github.com/gregbell/active_admin/issues/2403
945
+ [#2416]: https://github.com/gregbell/active_admin/issues/2416
946
+ [#2419]: https://github.com/gregbell/active_admin/issues/2419
947
+ [#2420]: https://github.com/gregbell/active_admin/issues/2420
948
+ [#2454]: https://github.com/gregbell/active_admin/issues/2454
949
+ [#2523]: https://github.com/gregbell/active_admin/issues/2523
950
+ [#2532]: https://github.com/gregbell/active_admin/issues/2532
951
+ [#2541]: https://github.com/gregbell/active_admin/issues/2541
952
+ [#2544]: https://github.com/gregbell/active_admin/issues/2544
953
+ [#2545]: https://github.com/gregbell/active_admin/issues/2545
954
+ [@Bishop]: https://github.com/Bishop
955
+ [@BoboFraggins]: https://github.com/BoboFraggins
956
+ [@DMajrekar]: https://github.com/DMajrekar
957
+ [@EtienneDepaulis]: https://github.com/EtienneDepaulis
958
+ [@MoritzMoritz]: https://github.com/MoritzMoritz
959
+ [@PChambino]: https://github.com/PChambino
960
+ [@TBAA]: https://github.com/TBAA
961
+ [@TiagoCardoso1983]: https://github.com/TiagoCardoso1983
962
+ [@TimPetricola]: https://github.com/TimPetricola
963
+ [@ZequeZ]: https://github.com/ZequeZ
964
+ [@adrienkohlbecker]: https://github.com/adrienkohlbecker
965
+ [@ai]: https://github.com/ai
966
+ [@amiel]: https://github.com/amiel
967
+ [@ball-hayden]: https://github.com/ball-hayden
968
+ [@bobbytables]: https://github.com/bobbytables
969
+ [@caifara]: https://github.com/caifara
970
+ [@cknoxrun]: https://github.com/cknoxrun
971
+ [@comboy]: https://github.com/comboy
972
+ [@coreyward]: https://github.com/coreyward
973
+ [@dapi]: https://github.com/dapi
974
+ [@dbussin]: https://github.com/dbussin
975
+ [@developer88]: https://github.com/developer88
976
+ [@dhiemstra]: https://github.com/dhiemstra
977
+ [@dmfrancisco]: https://github.com/dmfrancisco
978
+ [@doug316]: https://github.com/doug316
979
+ [@ebeigarts]: https://github.com/ebeigarts
980
+ [@ejholmes]: https://github.com/ejholmes
981
+ [@emzeq]: https://github.com/emzeq
982
+ [@ericcumbee]: https://github.com/ericcumbee
983
+ [@ericpromislow]: https://github.com/ericpromislow
984
+ [@fabiokr]: https://github.com/fabiokr
985
+ [@fabiormoura]: https://github.com/fabiormoura
986
+ [@fbuenemann]: https://github.com/fbuenemann
987
+ [@george]: https://github.com/george
988
+ [@ggilder]: https://github.com/ggilder
989
+ [@gregbell]: https://github.com/gregbell
990
+ [@hakanensari]: https://github.com/hakanensari
991
+ [@henrrrik]: https://github.com/henrrrik
992
+ [@ilyakatz]: https://github.com/ilyakatz
993
+ [@j]: https://github.com/j
994
+ [@jamesalmond]: https://github.com/jamesalmond
995
+ [@jancel]: https://github.com/jancel
996
+ [@jbarket]: https://github.com/jbarket
997
+ [@jbhannah]: https://github.com/jbhannah
998
+ [@jherdman]: https://github.com/jherdman
999
+ [@johnnyshields]: https://github.com/johnnyshields
1000
+ [@jokklan]: https://github.com/jokklan
1001
+ [@joseluistorres]: https://github.com/joseluistorres
1002
+ [@joshuacollins85]: https://github.com/joshuacollins85
1003
+ [@jschwindt]: https://github.com/jschwindt
1004
+ [@kerberoS]: https://github.com/kerberoS
1005
+ [@knoopx]: https://github.com/knoopx
1006
+ [@krug]: https://github.com/krug
1007
+ [@laffinkippah]: https://github.com/laffinkippah
1008
+ [@latortuga]: https://github.com/latortuga
1009
+ [@lupinglade]: https://github.com/lupinglade
1010
+ [@maax]: https://github.com/maax
1011
+ [@macfanatic]: https://github.com/macfanatic
1012
+ [@mattvague]: https://github.com/mattvague
1013
+ [@mindhalt]: https://github.com/mindhalt
1014
+ [@mitio]: https://github.com/mitio
1015
+ [@mperham]: https://github.com/mperham
1016
+ [@mwindwer]: https://github.com/mwindwer
1017
+ [@nappa]: https://github.com/nappa
1018
+ [@neoriddle]: https://github.com/neoriddle
1019
+ [@orendon]: https://github.com/orendon
1020
+ [@page_title]: https://github.com/page_title
1021
+ [@pcreux]: https://github.com/pcreux
1022
+ [@per_page]: https://github.com/per_page
1023
+ [@potatosalad]: https://github.com/potatosalad
1024
+ [@psy-q]: https://github.com/psy-q
1025
+ [@ptn]: https://github.com/ptn
1026
+ [@randym]: https://github.com/randym
1027
+ [@rdsoze]: https://github.com/rdsoze
1028
+ [@rheaton]: https://github.com/rheaton
1029
+ [@rmw]: https://github.com/rmw
1030
+ [@robdiciuccio]: https://github.com/robdiciuccio
1031
+ [@rolfb]: https://github.com/rolfb
1032
+ [@ronen]: https://github.com/ronen
1033
+ [@ryansch]: https://github.com/ryansch
1034
+ [@samvincent]: https://github.com/samvincent
1035
+ [@seanlinsley]: https://github.com/seanlinsley
1036
+ [@sftsang]: https://github.com/sftsang
1037
+ [@shayfrendt]: https://github.com/shayfrendt
1038
+ [@shekibobo]: https://github.com/shekibobo
1039
+ [@shell]: https://github.com/shell
1040
+ [@simonoff]: https://github.com/simonoff
1041
+ [@snapapps]: https://github.com/snapapps
1042
+ [@stereoscott]: https://github.com/stereoscott
1043
+ [@sunny]: https://github.com/sunny
1044
+ [@tank-bohr]: https://github.com/tank-bohr
1045
+ [@tinynumbers]: https://github.com/tinynumbers
1046
+ [@tracedwax]: https://github.com/tracedwax
1047
+ [@tricknotes]: https://github.com/tricknotes
1048
+ [@utkarshkukreti]: https://github.com/utkarshkukreti
1049
+ [@vairix]: https://github.com/vairix
1050
+ [@vairix-ssierra]: https://github.com/vairix-ssierra
1051
+ [@valdemarua]: https://github.com/valdemarua
1052
+ [@watson]: https://github.com/watson
1053
+ [@whatcould]: https://github.com/whatcould
1054
+ [@yawn]: https://github.com/yawn
1055
+ [@yorch]: https://github.com/yorch
1056
+ [@zorab47]: https://github.com/zorab47