activeadmin 2.2.0 → 2.6.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of activeadmin might be problematic. Click here for more details.

Files changed (88) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +111 -30
  3. data/CONTRIBUTING.md +50 -44
  4. data/README.md +9 -2
  5. data/app/assets/javascripts/active_admin/base.js +519 -0
  6. data/app/assets/stylesheets/active_admin/_base.scss +29 -29
  7. data/app/assets/stylesheets/active_admin/_header.scss +3 -5
  8. data/app/assets/stylesheets/active_admin/_mixins.scss +1 -1
  9. data/{vendor → app}/assets/stylesheets/active_admin/_normalize.scss +0 -0
  10. data/app/assets/stylesheets/active_admin/components/_tables.scss +1 -2
  11. data/app/assets/stylesheets/active_admin/mixins/_all.scss +8 -8
  12. data/app/assets/stylesheets/active_admin/mixins/_variables.scss +5 -0
  13. data/app/assets/stylesheets/active_admin/print.scss +2 -2
  14. data/app/assets/stylesheets/active_admin/structure/_main_structure.scss +1 -1
  15. data/app/javascript/active_admin/base.js +28 -0
  16. data/app/{assets/javascripts/active_admin/ext/jquery-ui.es6 → javascript/active_admin/ext/jquery-ui.js} +0 -0
  17. data/app/{assets/javascripts/active_admin/ext/jquery.es6 → javascript/active_admin/ext/jquery.js} +0 -0
  18. data/app/{assets/javascripts/active_admin/lib/batch_actions.es6 → javascript/active_admin/initializers/batch-actions.js} +9 -3
  19. data/app/javascript/active_admin/initializers/checkbox-toggler.js +3 -0
  20. data/app/{assets/javascripts/active_admin/initializers/datepicker.es6 → javascript/active_admin/initializers/datepicker.js} +0 -0
  21. data/app/javascript/active_admin/initializers/dropdown-menu.js +9 -0
  22. data/app/javascript/active_admin/initializers/filters.js +10 -0
  23. data/app/{assets/javascripts/active_admin/lib/has_many.es6 → javascript/active_admin/initializers/has-many.js} +0 -0
  24. data/app/javascript/active_admin/initializers/per-page.js +13 -0
  25. data/app/javascript/active_admin/initializers/table-checkbox-toggler.js +3 -0
  26. data/app/{assets/javascripts/active_admin/initializers/tabs.es6 → javascript/active_admin/initializers/tabs.js} +0 -0
  27. data/app/{assets/javascripts/active_admin/lib/checkbox-toggler.es6 → javascript/active_admin/lib/checkbox-toggler.js} +2 -2
  28. data/app/{assets/javascripts/active_admin/lib/dropdown-menu.es6 → javascript/active_admin/lib/dropdown-menu.js} +2 -9
  29. data/app/javascript/active_admin/lib/filters.js +39 -0
  30. data/app/{assets/javascripts/active_admin/lib/modal_dialog.es6 → javascript/active_admin/lib/modal-dialog.js} +3 -1
  31. data/app/javascript/active_admin/lib/per-page.js +38 -0
  32. data/app/{assets/javascripts/active_admin/lib/table-checkbox-toggler.es6 → javascript/active_admin/lib/table-checkbox-toggler.js} +4 -2
  33. data/app/javascript/active_admin/lib/utils.js +40 -0
  34. data/app/views/kaminari/active_admin_countless/_first_page.html.erb +11 -0
  35. data/app/views/kaminari/active_admin_countless/_gap.html.erb +8 -0
  36. data/app/views/kaminari/active_admin_countless/_next_page.html.erb +11 -0
  37. data/app/views/kaminari/active_admin_countless/_page.html.erb +12 -0
  38. data/app/views/kaminari/active_admin_countless/_paginator.html.erb +24 -0
  39. data/app/views/kaminari/active_admin_countless/_prev_page.html.erb +11 -0
  40. data/config/locales/az.yml +138 -0
  41. data/config/locales/ca.yml +0 -1
  42. data/config/locales/de.yml +18 -0
  43. data/config/locales/es.yml +3 -3
  44. data/config/locales/fr.yml +4 -4
  45. data/config/locales/sk.yml +59 -0
  46. data/docs/1-general-configuration.md +20 -0
  47. data/docs/2-resource-customization.md +1 -1
  48. data/docs/3-index-pages.md +1 -1
  49. data/docs/3-index-pages/index-as-table.md +7 -0
  50. data/docs/9-batch-actions.md +2 -2
  51. data/docs/Gemfile +0 -1
  52. data/docs/Gemfile.lock +103 -105
  53. data/docs/_config.yml +2 -0
  54. data/docs/_includes/top-menu.html +2 -2
  55. data/docs/index.html +108 -7
  56. data/docs/stylesheets/main.css +29 -0
  57. data/lib/active_admin.rb +0 -1
  58. data/lib/active_admin/application.rb +1 -1
  59. data/lib/active_admin/csv_builder.rb +1 -2
  60. data/lib/active_admin/filters/active_filter.rb +1 -1
  61. data/lib/active_admin/filters/resource_extension.rb +24 -0
  62. data/lib/active_admin/generators/boilerplate.rb +12 -4
  63. data/lib/active_admin/inputs/filters/date_range_input.rb +15 -12
  64. data/lib/active_admin/namespace_settings.rb +13 -0
  65. data/lib/active_admin/order_clause.rb +1 -1
  66. data/lib/active_admin/resource.rb +14 -1
  67. data/lib/active_admin/resource/belongs_to.rb +3 -0
  68. data/lib/active_admin/resource/model.rb +15 -0
  69. data/lib/active_admin/resource/routes.rb +11 -3
  70. data/lib/active_admin/resource_controller.rb +2 -0
  71. data/lib/active_admin/resource_controller/decorators.rb +2 -2
  72. data/lib/active_admin/resource_controller/polymorphic_routes.rb +37 -0
  73. data/lib/active_admin/version.rb +1 -1
  74. data/lib/active_admin/views/components/paginated_collection.rb +3 -2
  75. data/lib/active_admin/views/components/table_for.rb +1 -0
  76. data/lib/active_admin/views/index_as_table.rb +7 -0
  77. data/lib/active_admin/views/pages/base.rb +5 -3
  78. data/lib/active_admin/views/pages/index.rb +1 -0
  79. data/lib/generators/active_admin/install/templates/active_admin.rb.erb +14 -1
  80. data/lib/generators/active_admin/resource/templates/admin.rb.erb +4 -2
  81. metadata +35 -43
  82. data/app/assets/images/active_admin/nested_menu_arrow.gif +0 -0
  83. data/app/assets/images/active_admin/nested_menu_arrow_dark.gif +0 -0
  84. data/app/assets/images/active_admin/orderable.png +0 -0
  85. data/app/assets/javascripts/active_admin/base.es6 +0 -23
  86. data/app/assets/javascripts/active_admin/initializers/filters.es6 +0 -45
  87. data/app/assets/javascripts/active_admin/lib/active_admin.es6 +0 -41
  88. data/app/assets/javascripts/active_admin/lib/per_page.es6 +0 -47
@@ -355,7 +355,7 @@ end
355
355
  ```
356
356
 
357
357
  If you need to completely replace the record retrieving code (e.g., you have a
358
- custom `to_param` implementation in your models), override the `resource` method
358
+ custom `to_param` implementation in your models), override the `find_resource` method
359
359
  on the controller:
360
360
 
361
361
  ```ruby
@@ -212,7 +212,7 @@ end
212
212
  ```
213
213
 
214
214
  Scopes can be labelled with a translation, e.g.
215
- `activerecord.scopes.invoice.expired`.
215
+ `active_admin.scopes.scope_method`.
216
216
 
217
217
  ### Scopes groups
218
218
 
@@ -193,6 +193,13 @@ controller do
193
193
  end
194
194
  ```
195
195
 
196
+ You can also define associated objects to include outside of the
197
+ `scoped_collection` method:
198
+
199
+ ```ruby
200
+ includes :publisher
201
+ ```
202
+
196
203
  Then it's simple to sort by any Publisher attribute from within the index table:
197
204
 
198
205
  ```ruby
@@ -154,13 +154,13 @@ batch_action :doit, form: -> { {user: User.pluck(:name, :id)} } do |ids, inputs|
154
154
  end
155
155
  ```
156
156
 
157
- Under the covers this is powered by the JS `ActiveAdmin.modal_dialog` which you
157
+ Under the covers this is powered by the JS `ActiveAdmin.ModalDialog` which you
158
158
  can use yourself:
159
159
 
160
160
  ```coffee
161
161
  if $('body.admin_users').length
162
162
  $('a[data-prompt]').click ->
163
- ActiveAdmin.modal_dialog $(@).data('prompt'), comment: 'textarea',
163
+ ActiveAdmin.ModalDialog $(@).data('prompt'), comment: 'textarea',
164
164
  (inputs)=>
165
165
  $.post "/admin/users/#{$(@).data 'id'}/change_state",
166
166
  comment: inputs.comment, state: $(@).data('state'),
@@ -1,4 +1,3 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  gem 'github-pages'
4
- gem 'jekyll-redirect-from'
@@ -1,13 +1,14 @@
1
1
  GEM
2
2
  remote: https://rubygems.org/
3
3
  specs:
4
- activesupport (4.2.10)
5
- i18n (~> 0.7)
4
+ activesupport (6.0.1)
5
+ concurrent-ruby (~> 1.0, >= 1.0.2)
6
+ i18n (>= 0.7, < 2)
6
7
  minitest (~> 5.1)
7
- thread_safe (~> 0.3, >= 0.3.4)
8
8
  tzinfo (~> 1.1)
9
- addressable (2.5.2)
10
- public_suffix (>= 2.0.2, < 4.0)
9
+ zeitwerk (~> 2.2)
10
+ addressable (2.7.0)
11
+ public_suffix (>= 2.0.2, < 5.0)
11
12
  coffee-script (2.4.1)
12
13
  coffee-script-source
13
14
  execjs
@@ -15,43 +16,42 @@ GEM
15
16
  colorator (1.1.0)
16
17
  commonmarker (0.17.13)
17
18
  ruby-enum (~> 0.5)
18
- concurrent-ruby (1.0.5)
19
- dnsruby (1.61.2)
19
+ concurrent-ruby (1.1.5)
20
+ dnsruby (1.61.3)
20
21
  addressable (~> 2.5)
21
22
  em-websocket (0.5.1)
22
23
  eventmachine (>= 0.12.9)
23
24
  http_parser.rb (~> 0.6.0)
24
- ethon (0.11.0)
25
+ ethon (0.12.0)
25
26
  ffi (>= 1.3.0)
26
27
  eventmachine (1.2.7)
27
28
  execjs (2.7.0)
28
- faraday (0.15.3)
29
+ faraday (0.17.1)
29
30
  multipart-post (>= 1.2, < 3)
30
- ffi (1.9.25)
31
+ ffi (1.11.3)
31
32
  forwardable-extended (2.6.0)
32
- gemoji (3.0.0)
33
- github-pages (192)
34
- activesupport (= 4.2.10)
35
- github-pages-health-check (= 1.8.1)
36
- jekyll (= 3.7.4)
37
- jekyll-avatar (= 0.6.0)
33
+ gemoji (3.0.1)
34
+ github-pages (203)
35
+ github-pages-health-check (= 1.16.1)
36
+ jekyll (= 3.8.5)
37
+ jekyll-avatar (= 0.7.0)
38
38
  jekyll-coffeescript (= 1.1.1)
39
- jekyll-commonmark-ghpages (= 0.1.5)
39
+ jekyll-commonmark-ghpages (= 0.1.6)
40
40
  jekyll-default-layout (= 0.1.4)
41
- jekyll-feed (= 0.10.0)
41
+ jekyll-feed (= 0.13.0)
42
42
  jekyll-gist (= 1.5.0)
43
- jekyll-github-metadata (= 2.9.4)
44
- jekyll-mentions (= 1.4.1)
45
- jekyll-optional-front-matter (= 0.3.0)
43
+ jekyll-github-metadata (= 2.12.1)
44
+ jekyll-mentions (= 1.5.1)
45
+ jekyll-optional-front-matter (= 0.3.2)
46
46
  jekyll-paginate (= 1.1.0)
47
- jekyll-readme-index (= 0.2.0)
48
- jekyll-redirect-from (= 0.14.0)
49
- jekyll-relative-links (= 0.5.3)
50
- jekyll-remote-theme (= 0.3.1)
47
+ jekyll-readme-index (= 0.3.0)
48
+ jekyll-redirect-from (= 0.15.0)
49
+ jekyll-relative-links (= 0.6.1)
50
+ jekyll-remote-theme (= 0.4.1)
51
51
  jekyll-sass-converter (= 1.5.2)
52
- jekyll-seo-tag (= 2.5.0)
53
- jekyll-sitemap (= 1.2.0)
54
- jekyll-swiss (= 0.4.0)
52
+ jekyll-seo-tag (= 2.6.1)
53
+ jekyll-sitemap (= 1.4.0)
54
+ jekyll-swiss (= 1.0.0)
55
55
  jekyll-theme-architect (= 0.1.1)
56
56
  jekyll-theme-cayman (= 0.1.1)
57
57
  jekyll-theme-dinky (= 0.1.1)
@@ -61,33 +61,32 @@ GEM
61
61
  jekyll-theme-midnight (= 0.1.1)
62
62
  jekyll-theme-minimal (= 0.1.1)
63
63
  jekyll-theme-modernist (= 0.1.1)
64
- jekyll-theme-primer (= 0.5.3)
64
+ jekyll-theme-primer (= 0.5.4)
65
65
  jekyll-theme-slate (= 0.1.1)
66
66
  jekyll-theme-tactile (= 0.1.1)
67
67
  jekyll-theme-time-machine (= 0.1.1)
68
- jekyll-titles-from-headings (= 0.5.1)
69
- jemoji (= 0.10.1)
68
+ jekyll-titles-from-headings (= 0.5.3)
69
+ jemoji (= 0.11.1)
70
70
  kramdown (= 1.17.0)
71
- liquid (= 4.0.0)
72
- listen (= 3.1.5)
71
+ liquid (= 4.0.3)
73
72
  mercenary (~> 0.3)
74
- minima (= 2.5.0)
75
- nokogiri (>= 1.8.2, < 2.0)
76
- rouge (= 2.2.1)
73
+ minima (= 2.5.1)
74
+ nokogiri (>= 1.10.4, < 2.0)
75
+ rouge (= 3.13.0)
77
76
  terminal-table (~> 1.4)
78
- github-pages-health-check (1.8.1)
77
+ github-pages-health-check (1.16.1)
79
78
  addressable (~> 2.3)
80
79
  dnsruby (~> 1.60)
81
80
  octokit (~> 4.0)
82
- public_suffix (~> 2.0)
81
+ public_suffix (~> 3.0)
83
82
  typhoeus (~> 1.3)
84
- html-pipeline (2.8.4)
83
+ html-pipeline (2.12.2)
85
84
  activesupport (>= 2)
86
85
  nokogiri (>= 1.4)
87
86
  http_parser.rb (0.6.0)
88
87
  i18n (0.9.5)
89
88
  concurrent-ruby (~> 1.0)
90
- jekyll (3.7.4)
89
+ jekyll (3.8.5)
91
90
  addressable (~> 2.4)
92
91
  colorator (~> 1.0)
93
92
  em-websocket (~> 0.5)
@@ -100,49 +99,50 @@ GEM
100
99
  pathutil (~> 0.9)
101
100
  rouge (>= 1.7, < 4)
102
101
  safe_yaml (~> 1.0)
103
- jekyll-avatar (0.6.0)
104
- jekyll (~> 3.0)
102
+ jekyll-avatar (0.7.0)
103
+ jekyll (>= 3.0, < 5.0)
105
104
  jekyll-coffeescript (1.1.1)
106
105
  coffee-script (~> 2.2)
107
106
  coffee-script-source (~> 1.11.1)
108
- jekyll-commonmark (1.2.0)
107
+ jekyll-commonmark (1.3.1)
109
108
  commonmarker (~> 0.14)
110
- jekyll (>= 3.0, < 4.0)
111
- jekyll-commonmark-ghpages (0.1.5)
109
+ jekyll (>= 3.7, < 5.0)
110
+ jekyll-commonmark-ghpages (0.1.6)
112
111
  commonmarker (~> 0.17.6)
113
- jekyll-commonmark (~> 1)
114
- rouge (~> 2)
112
+ jekyll-commonmark (~> 1.2)
113
+ rouge (>= 2.0, < 4.0)
115
114
  jekyll-default-layout (0.1.4)
116
115
  jekyll (~> 3.0)
117
- jekyll-feed (0.10.0)
118
- jekyll (~> 3.3)
116
+ jekyll-feed (0.13.0)
117
+ jekyll (>= 3.7, < 5.0)
119
118
  jekyll-gist (1.5.0)
120
119
  octokit (~> 4.2)
121
- jekyll-github-metadata (2.9.4)
122
- jekyll (~> 3.1)
120
+ jekyll-github-metadata (2.12.1)
121
+ jekyll (~> 3.4)
123
122
  octokit (~> 4.0, != 4.4.0)
124
- jekyll-mentions (1.4.1)
123
+ jekyll-mentions (1.5.1)
125
124
  html-pipeline (~> 2.3)
126
- jekyll (~> 3.0)
127
- jekyll-optional-front-matter (0.3.0)
128
- jekyll (~> 3.0)
125
+ jekyll (>= 3.7, < 5.0)
126
+ jekyll-optional-front-matter (0.3.2)
127
+ jekyll (>= 3.0, < 5.0)
129
128
  jekyll-paginate (1.1.0)
130
- jekyll-readme-index (0.2.0)
131
- jekyll (~> 3.0)
132
- jekyll-redirect-from (0.14.0)
133
- jekyll (~> 3.3)
134
- jekyll-relative-links (0.5.3)
135
- jekyll (~> 3.3)
136
- jekyll-remote-theme (0.3.1)
137
- jekyll (~> 3.5)
138
- rubyzip (>= 1.2.1, < 3.0)
129
+ jekyll-readme-index (0.3.0)
130
+ jekyll (>= 3.0, < 5.0)
131
+ jekyll-redirect-from (0.15.0)
132
+ jekyll (>= 3.3, < 5.0)
133
+ jekyll-relative-links (0.6.1)
134
+ jekyll (>= 3.3, < 5.0)
135
+ jekyll-remote-theme (0.4.1)
136
+ addressable (~> 2.0)
137
+ jekyll (>= 3.5, < 5.0)
138
+ rubyzip (>= 1.3.0)
139
139
  jekyll-sass-converter (1.5.2)
140
140
  sass (~> 3.4)
141
- jekyll-seo-tag (2.5.0)
142
- jekyll (~> 3.3)
143
- jekyll-sitemap (1.2.0)
144
- jekyll (~> 3.3)
145
- jekyll-swiss (0.4.0)
141
+ jekyll-seo-tag (2.6.1)
142
+ jekyll (>= 3.3, < 5.0)
143
+ jekyll-sitemap (1.4.0)
144
+ jekyll (>= 3.7, < 5.0)
145
+ jekyll-swiss (1.0.0)
146
146
  jekyll-theme-architect (0.1.1)
147
147
  jekyll (~> 3.5)
148
148
  jekyll-seo-tag (~> 2.0)
@@ -170,8 +170,8 @@ GEM
170
170
  jekyll-theme-modernist (0.1.1)
171
171
  jekyll (~> 3.5)
172
172
  jekyll-seo-tag (~> 2.0)
173
- jekyll-theme-primer (0.5.3)
174
- jekyll (~> 3.5)
173
+ jekyll-theme-primer (0.5.4)
174
+ jekyll (> 3.5, < 5.0)
175
175
  jekyll-github-metadata (~> 2.9)
176
176
  jekyll-seo-tag (~> 2.0)
177
177
  jekyll-theme-slate (0.1.1)
@@ -183,67 +183,65 @@ GEM
183
183
  jekyll-theme-time-machine (0.1.1)
184
184
  jekyll (~> 3.5)
185
185
  jekyll-seo-tag (~> 2.0)
186
- jekyll-titles-from-headings (0.5.1)
187
- jekyll (~> 3.3)
188
- jekyll-watch (2.0.0)
186
+ jekyll-titles-from-headings (0.5.3)
187
+ jekyll (>= 3.3, < 5.0)
188
+ jekyll-watch (2.2.1)
189
189
  listen (~> 3.0)
190
- jemoji (0.10.1)
190
+ jemoji (0.11.1)
191
191
  gemoji (~> 3.0)
192
192
  html-pipeline (~> 2.2)
193
- jekyll (~> 3.0)
193
+ jekyll (>= 3.0, < 5.0)
194
194
  kramdown (1.17.0)
195
- liquid (4.0.0)
196
- listen (3.1.5)
197
- rb-fsevent (~> 0.9, >= 0.9.4)
198
- rb-inotify (~> 0.9, >= 0.9.7)
199
- ruby_dep (~> 1.2)
195
+ liquid (4.0.3)
196
+ listen (3.2.0)
197
+ rb-fsevent (~> 0.10, >= 0.10.3)
198
+ rb-inotify (~> 0.9, >= 0.9.10)
200
199
  mercenary (0.3.6)
201
- mini_portile2 (2.3.0)
202
- minima (2.5.0)
203
- jekyll (~> 3.5)
200
+ mini_portile2 (2.4.0)
201
+ minima (2.5.1)
202
+ jekyll (>= 3.5, < 5.0)
204
203
  jekyll-feed (~> 0.9)
205
204
  jekyll-seo-tag (~> 2.1)
206
- minitest (5.11.3)
207
- multipart-post (2.0.0)
208
- nokogiri (1.8.5)
209
- mini_portile2 (~> 2.3.0)
210
- octokit (4.12.0)
205
+ minitest (5.13.0)
206
+ multipart-post (2.1.1)
207
+ nokogiri (1.10.6)
208
+ mini_portile2 (~> 2.4.0)
209
+ octokit (4.14.0)
211
210
  sawyer (~> 0.8.0, >= 0.5.3)
212
- pathutil (0.16.1)
211
+ pathutil (0.16.2)
213
212
  forwardable-extended (~> 2.6)
214
- public_suffix (2.0.5)
213
+ public_suffix (3.1.1)
215
214
  rb-fsevent (0.10.3)
216
- rb-inotify (0.9.10)
217
- ffi (>= 0.5.0, < 2)
218
- rouge (2.2.1)
215
+ rb-inotify (0.10.0)
216
+ ffi (~> 1.0)
217
+ rouge (3.13.0)
219
218
  ruby-enum (0.7.2)
220
219
  i18n
221
- ruby_dep (1.5.0)
222
- rubyzip (1.2.2)
223
- safe_yaml (1.0.4)
224
- sass (3.6.0)
220
+ rubyzip (2.0.0)
221
+ safe_yaml (1.0.5)
222
+ sass (3.7.4)
225
223
  sass-listen (~> 4.0.0)
226
224
  sass-listen (4.0.0)
227
225
  rb-fsevent (~> 0.9, >= 0.9.4)
228
226
  rb-inotify (~> 0.9, >= 0.9.7)
229
- sawyer (0.8.1)
230
- addressable (>= 2.3.5, < 2.6)
231
- faraday (~> 0.8, < 1.0)
227
+ sawyer (0.8.2)
228
+ addressable (>= 2.3.5)
229
+ faraday (> 0.8, < 2.0)
232
230
  terminal-table (1.8.0)
233
231
  unicode-display_width (~> 1.1, >= 1.1.1)
234
232
  thread_safe (0.3.6)
235
- typhoeus (1.3.0)
233
+ typhoeus (1.3.1)
236
234
  ethon (>= 0.9.0)
237
235
  tzinfo (1.2.5)
238
236
  thread_safe (~> 0.1)
239
- unicode-display_width (1.4.0)
237
+ unicode-display_width (1.6.0)
238
+ zeitwerk (2.2.2)
240
239
 
241
240
  PLATFORMS
242
241
  ruby
243
242
 
244
243
  DEPENDENCIES
245
244
  github-pages
246
- jekyll-redirect-from
247
245
 
248
246
  BUNDLED WITH
249
- 1.16.5
247
+ 2.0.2
@@ -1,2 +1,4 @@
1
1
  plugins:
2
+ - jekyll-default-layout
2
3
  - jekyll-redirect-from
4
+ - jekyll-relative-links
@@ -8,9 +8,9 @@
8
8
  </div>
9
9
 
10
10
  <div id="tidelift">
11
- <a href="https://tidelift.com/subscription/pkg/rubygems-activeadmin?utm_source=rubygems-activeadmin&utm_medium=readme" target="_blank">
11
+ <a href="https://tidelift.com/subscription/pkg/rubygems-activeadmin?utm_source=rubygems-activeadmin&utm_medium=homepage" target="_blank">
12
12
  <span class="cta">
13
- Get license assurances and timely security notifications
13
+ Active Admin for enterprise available via Tidelift
14
14
  </span>
15
15
  </a>
16
16
  </div>
@@ -10,81 +10,101 @@
10
10
  <p class="intro">
11
11
  The <strong>administration framework</strong> for business critical <strong>Ruby on Rails</strong> applications.
12
12
  </p>
13
+
13
14
  <p>
14
15
  Active Admin is a Ruby on Rails plugin for generating administration style interfaces. It abstracts common business application patterns to make it simple for developers to implement beautiful and elegant interfaces with very little effort.
15
16
  </p>
17
+
16
18
  <h2>
17
19
  A beautiful interface designed for real people.
18
20
  </h2>
21
+
19
22
  <div id="features">
20
23
  <div id="features-left">
21
24
  <h3 class="first">
22
25
  Global Navigation
23
26
  </h3>
27
+
24
28
  <p>
25
29
  Customizable global navigation allows you to create usable admin interfaces for your business.
26
30
  </p>
31
+
27
32
  <h3>
28
33
  Scopes
29
34
  </h3>
35
+
30
36
  <p>
31
37
  Use scopes to create sections of mutually exclusive resources for quick navigation and reporting.
32
38
  </p>
39
+
33
40
  <h3>
34
41
  Index Styles
35
42
  </h3>
43
+
36
44
  <p>
37
45
  Index screens are available in many styles. The default, shown here, is a table view, but Active Admin also supports Grids, Blocks and a Blog view.
38
46
  </p>
47
+
39
48
  <h3>
40
49
  <span class="caps">API</span> &amp; Downloads
41
50
  </h3>
51
+
42
52
  <p>
43
53
  Each resource that is registered wtih Active Admin becomes available as <span class="caps">JSON</span>, <span class="caps">XML</span> and <span class="caps">CSV</span> download. Customize the output to meet your requirements.
44
54
  </p>
45
55
  </div>
56
+
46
57
  <div id="features-right">
47
58
  <h3 class="first">
48
59
  User Authentication
49
60
  </h3>
61
+
50
62
  <p>
51
63
  Use the bundled Devise configuration or implement your own authorization using the provided hooks.
52
64
  </p>
65
+
53
66
  <h3>
54
67
  Action Items
55
68
  </h3>
69
+
56
70
  <p>
57
71
  Add buttons, links or other content in the “Action Items” section on each screen.
58
72
  </p>
73
+
59
74
  <h3>
60
75
  Filters
61
76
  </h3>
77
+
62
78
  <p>
63
79
  Allow users to filter resources by searching strings, text fields, dates, and numeric values.
64
80
  </p>
81
+
65
82
  <h3>
66
83
  Sidebar Sections
67
84
  </h3>
85
+
68
86
  <p>
69
87
  Customize the sidebar sections with a simple <span class="caps">DSL</span> built in to Active Admin.
70
88
  </p>
71
89
  </div>
72
90
  </div>
91
+
73
92
  <p>
74
93
  Active Admin’s interface was designed from the ground up for non-technical users. It makes it easy for developers to build highly usable interfaces that customers will actually enjoy using.
75
94
  </p>
95
+
76
96
  <h2>
77
97
  An elegant <span class="caps">DSL</span> built for developer productivity.
78
98
  </h2>
99
+
79
100
  <p>
80
101
  Get started with one line of code or customize the entire interface with the provided <span class="caps">DSL</span>.
81
102
  </p>
103
+
82
104
  <div id="dsl">
83
105
  <div class="highlight">
84
- <pre>
85
- <code class="ruby"><span class="c1"># app/admin/products.rb</span>
106
+ <pre><code class="ruby"><span class="c1"># app/admin/products.rb</span>
86
107
  <span class="no">ActiveAdmin</span><span class="o">.</span><span class="n">register</span> <span class="no">Product</span> <span class="k">do</span>
87
-
88
108
  <span class="c1"># Create sections on the index screen</span>
89
109
  <span class="n">scope</span> <span class="ss">:all</span><span class="p">,</span> <span class="ss">default:</span> <span class="kp">true</span>
90
110
  <span class="n">scope</span> <span class="ss">:available</span>
@@ -104,12 +124,93 @@
104
124
  <span class="k">end</span>
105
125
  <span class="n">actions</span>
106
126
  <span class="k">end</span>
107
-
108
- <span class="k">end</span>
109
- </code>
110
- </pre>
127
+ <span class="k">end</span></code></pre>
111
128
  </div>
112
129
  </div>
130
+
131
+ <h2>
132
+ Active Admin for enterprise
133
+ </h2>
134
+
135
+ <p>
136
+ <a href="https://tidelift.com/subscription/pkg/rubygems-activeadmin?utm_source=rubygems-activeadmin&utm_medium=homepage">
137
+ Available as part of the Tidelift Subscription
138
+ </a>
139
+ </p>
140
+
141
+ <p>
142
+ Active Admin and the maintainers of thousands of other packages are
143
+ working with Tidelift to deliver one enterprise subscription that
144
+ covers all of the open source you use.
145
+ </p>
146
+
147
+ <p>
148
+ If you want the flexibility of open source and the confidence of
149
+ commercial-grade software, this is for you.
150
+ </p>
151
+
152
+ <div class="tidelift-buttons">
153
+ <a href="https://tidelift.com/subscription/pkg/rubygems-activeadmin?utm_source=rubygems-activeadmin&utm_medium=referral" target="_blank">
154
+ <span>LEARN MORE</span>
155
+ </a>
156
+
157
+ <a href="https://tidelift.com/subscription/request-a-demo?utm_source=rubygems-activeadmin&utm_medium=referral" target="_blank">
158
+ <span>REQUEST A DEMO</span>
159
+ </a>
160
+ </div>
161
+
162
+ <h3>
163
+ The Tidelift Subscription manages your dependencies for you.
164
+ </h3>
165
+
166
+ <ul>
167
+ <li>
168
+ Get the tools you need to continuously catalog and understand the open source software that your application depends on.
169
+ </li>
170
+
171
+ <li>
172
+ Your subscription helps pay the open source maintainers of the exact
173
+ packages you use to ensure they meet the standards you require.
174
+ </li>
175
+
176
+ <li>
177
+ Address issues proactively, with tools that scan for new security,
178
+ licensing, and maintenance issues, and alert our participating open
179
+ source maintainers so they can resolve them on your behalf.
180
+ </li>
181
+
182
+ <li>
183
+ Measure and improve your open source dependencies' health—which
184
+ improves your app’s health—and get a short list of high-impact steps
185
+ your team can take to improve them even more.
186
+ </li>
187
+
188
+ <li>
189
+ Get commercial assurances that don't come for free with open source
190
+ packages, like intellectual property indemnification and support
191
+ under a service level agreement. You expect these guarantees from
192
+ proprietary software, and you can have them when using open source
193
+ as well.
194
+ </li>
195
+ </ul>
196
+
197
+ <p>
198
+ The end result? All of the capabilities you expect from
199
+ commercial-grade software, for the full breadth of open source you
200
+ use. That means less time grappling with esoteric open source trivia,
201
+ and more time building your own applications—and your business.
202
+ </p>
203
+
204
+ <div class="tidelift-buttons">
205
+ <a href="https://tidelift.com/subscription/pkg/rubygems-activeadmin?utm_source=rubygems-activeadmin&utm_medium=referral" target="_blank">
206
+ <span>LEARN MORE</span>
207
+ </a>
208
+
209
+ <a href="https://tidelift.com/subscription/request-a-demo?utm_source=rubygems-activeadmin&utm_medium=referral" target="_blank">
210
+ <span>REQUEST A DEMO</span>
211
+ </a>
212
+ </div>
213
+
113
214
  <h2 class="getting-started-heading">
114
215
  3 Ways to Get Started:
115
216
  </h2>