activeadmin 1.0.0.pre1 → 1.0.0.pre2

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