active_admin-extensions 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +22 -0
- data/.ruby-version +1 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +29 -0
- data/Rakefile +2 -0
- data/active_admin-extensions.gemspec +26 -0
- data/config/locales/en.yml +8 -0
- data/config/locales/it.yml +8 -0
- data/lib/active_admin/extensions/controller/action_status.rb +35 -0
- data/lib/active_admin/extensions/controller/flash_messages/create.rb +33 -0
- data/lib/active_admin/extensions/controller/flash_messages/destroy.rb +33 -0
- data/lib/active_admin/extensions/controller/flash_messages/update.rb +33 -0
- data/lib/active_admin/extensions/controller/flash_messages.rb +21 -0
- data/lib/active_admin/extensions/controller/per_page_lambda.rb +27 -0
- data/lib/active_admin/extensions/controller/public_resources.rb +22 -0
- data/lib/active_admin/extensions/controller/redirect_after_action_to.rb +91 -0
- data/lib/active_admin/extensions/version.rb +5 -0
- data/lib/active_admin/extensions.rb +13 -0
- metadata +133 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: eeab71476e7b4644a2b7b0e4d399d80a57bcf495
|
4
|
+
data.tar.gz: 329db0389d5ae7a9ba472eda611dd20776fab28f
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 0e9c4d55d252e83edcb80fcf96bb00465ae94a670e5e2b599a905e281279e699082398716049dd13435d10a2c7f728cc2b631c4ce84afdc1ca5c1f86fc4680db
|
7
|
+
data.tar.gz: e66902e0d7417212db0feea688dee2027e9542eca254be00864d61a0ace5f840d194fe2dc5e01a0843fd8d595d88c1eb79020109246d26c44da340f90edd9de2
|
data/.gitignore
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
*.gem
|
2
|
+
*.rbc
|
3
|
+
.bundle
|
4
|
+
.config
|
5
|
+
.yardoc
|
6
|
+
Gemfile.lock
|
7
|
+
InstalledFiles
|
8
|
+
_yardoc
|
9
|
+
coverage
|
10
|
+
doc/
|
11
|
+
lib/bundler/man
|
12
|
+
pkg
|
13
|
+
rdoc
|
14
|
+
spec/reports
|
15
|
+
test/tmp
|
16
|
+
test/version_tmp
|
17
|
+
tmp
|
18
|
+
*.bundle
|
19
|
+
*.so
|
20
|
+
*.o
|
21
|
+
*.a
|
22
|
+
mkmf.log
|
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
2.1.2
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2014 Fire-Dragon-DoL
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# ActiveAdmin::Extensions
|
2
|
+
|
3
|
+
Collection of extensions for ActiveAdmin
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'active_admin-extensions'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install active_admin-extensions
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
TODO: Write usage instructions here
|
22
|
+
|
23
|
+
## Contributing
|
24
|
+
|
25
|
+
1. Fork it ( https://github.com/[my-github-username]/active_admin-extensions/fork )
|
26
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
+
5. Create a new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'active_admin/extensions/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "active_admin-extensions"
|
8
|
+
spec.version = ActiveAdmin::Extensions::VERSION
|
9
|
+
spec.authors = ["Fire-Dragon-DoL"]
|
10
|
+
spec.email = ["francesco.belladonna@gmail.com"]
|
11
|
+
spec.summary = %q{Collection of extensions for ActiveAdmin}
|
12
|
+
spec.description = %q{Collection of extensions for ActiveAdmin}
|
13
|
+
spec.homepage = ""
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0")
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.6"
|
22
|
+
spec.add_development_dependency "rake"
|
23
|
+
spec.add_dependency "i18n"
|
24
|
+
spec.add_dependency "activeadmin"
|
25
|
+
spec.add_dependency "activesupport"
|
26
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
module ActiveAdmin
|
2
|
+
|
3
|
+
module Extensions
|
4
|
+
|
5
|
+
module Controller
|
6
|
+
|
7
|
+
module ActionStatus
|
8
|
+
|
9
|
+
[:create, :update, :destroy].each do |parsed_action|
|
10
|
+
define_method(parsed_action) do |&block|
|
11
|
+
super() do |success, failure|
|
12
|
+
@action_successful = failure.instance_of?(
|
13
|
+
InheritedResources::BlankSlate
|
14
|
+
) || failure.class.nil?
|
15
|
+
block.call(success, failure) unless block.nil?
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
def action_successful?
|
21
|
+
@action_successful = false if @action_successful.nil?
|
22
|
+
@action_successful
|
23
|
+
end
|
24
|
+
|
25
|
+
def action_failure?
|
26
|
+
!action_successful?
|
27
|
+
end
|
28
|
+
|
29
|
+
end
|
30
|
+
|
31
|
+
end
|
32
|
+
|
33
|
+
end
|
34
|
+
|
35
|
+
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
require 'active_admin/extensions/controller/action_status'
|
2
|
+
|
3
|
+
module ActiveAdmin
|
4
|
+
|
5
|
+
module Extensions
|
6
|
+
|
7
|
+
module Controller
|
8
|
+
|
9
|
+
module FlashMessages
|
10
|
+
|
11
|
+
module Create
|
12
|
+
include ::ActiveAdmin::Extensions::Controller::ActionStatus
|
13
|
+
|
14
|
+
def create
|
15
|
+
super() do |success, failure|
|
16
|
+
if action_successful?
|
17
|
+
flash.notice = I18n.t(
|
18
|
+
'active_admin.extensions.controller.flash_messages.create',
|
19
|
+
resource: resource.class.model_name.human
|
20
|
+
)
|
21
|
+
end
|
22
|
+
yield(success, failure) if block_given?
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
end
|
28
|
+
|
29
|
+
end
|
30
|
+
|
31
|
+
end
|
32
|
+
|
33
|
+
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
require 'active_admin/extensions/controller/action_status'
|
2
|
+
|
3
|
+
module ActiveAdmin
|
4
|
+
|
5
|
+
module Extensions
|
6
|
+
|
7
|
+
module Controller
|
8
|
+
|
9
|
+
module FlashMessages
|
10
|
+
|
11
|
+
module Destroy
|
12
|
+
include ::ActiveAdmin::Extensions::Controller::ActionStatus
|
13
|
+
|
14
|
+
def destroy
|
15
|
+
super() do |success, failure|
|
16
|
+
if action_successful?
|
17
|
+
flash.notice = I18n.t(
|
18
|
+
'active_admin.extensions.controller.flash_messages.destroy',
|
19
|
+
resource: resource.class.model_name.human
|
20
|
+
)
|
21
|
+
end
|
22
|
+
yield(success, failure) if block_given?
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
end
|
28
|
+
|
29
|
+
end
|
30
|
+
|
31
|
+
end
|
32
|
+
|
33
|
+
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
require 'active_admin/extensions/controller/action_status'
|
2
|
+
|
3
|
+
module ActiveAdmin
|
4
|
+
|
5
|
+
module Extensions
|
6
|
+
|
7
|
+
module Controller
|
8
|
+
|
9
|
+
module FlashMessages
|
10
|
+
|
11
|
+
module Update
|
12
|
+
include ::ActiveAdmin::Extensions::Controller::ActionStatus
|
13
|
+
|
14
|
+
def update
|
15
|
+
super() do |success, failure|
|
16
|
+
if action_successful?
|
17
|
+
flash.notice = I18n.t(
|
18
|
+
'active_admin.extensions.controller.flash_messages.update',
|
19
|
+
resource: resource.class.model_name.human
|
20
|
+
)
|
21
|
+
end
|
22
|
+
yield(success, failure) if block_given?
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
end
|
28
|
+
|
29
|
+
end
|
30
|
+
|
31
|
+
end
|
32
|
+
|
33
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
require 'active_admin/extensions/controller/flash_messages/create'
|
2
|
+
require 'active_admin/extensions/controller/flash_messages/update'
|
3
|
+
require 'active_admin/extensions/controller/flash_messages/destroy'
|
4
|
+
|
5
|
+
module ActiveAdmin
|
6
|
+
|
7
|
+
module Extensions
|
8
|
+
|
9
|
+
module Controller
|
10
|
+
|
11
|
+
module FlashMessages
|
12
|
+
include Create
|
13
|
+
include Update
|
14
|
+
include Destroy
|
15
|
+
end
|
16
|
+
|
17
|
+
end
|
18
|
+
|
19
|
+
end
|
20
|
+
|
21
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
module Extensions
|
2
|
+
|
3
|
+
module ActiveAdmin
|
4
|
+
|
5
|
+
module Controller
|
6
|
+
|
7
|
+
module PerPageLambda
|
8
|
+
|
9
|
+
def per_page
|
10
|
+
if active_admin_config.paginate
|
11
|
+
@per_page || if active_admin_config.per_page.try(:lambda?)
|
12
|
+
active_admin_config.per_page.call(self)
|
13
|
+
else
|
14
|
+
super
|
15
|
+
end
|
16
|
+
else
|
17
|
+
super
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
end
|
22
|
+
|
23
|
+
end
|
24
|
+
|
25
|
+
end
|
26
|
+
|
27
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
require 'active_support/concern'
|
2
|
+
|
3
|
+
module ActiveAdmin
|
4
|
+
|
5
|
+
module Extensions
|
6
|
+
|
7
|
+
module Controller
|
8
|
+
|
9
|
+
module PublicResources
|
10
|
+
extend ActiveSupport::Concern
|
11
|
+
|
12
|
+
included do
|
13
|
+
public :resource
|
14
|
+
public :collection
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
end
|
19
|
+
|
20
|
+
end
|
21
|
+
|
22
|
+
end
|
@@ -0,0 +1,91 @@
|
|
1
|
+
require 'active_support/concern'
|
2
|
+
require 'active_admin/extensions/controller/action_status'
|
3
|
+
require 'active_admin/extensions/controller/public_resources'
|
4
|
+
|
5
|
+
module ActiveAdmin
|
6
|
+
|
7
|
+
module Extensions
|
8
|
+
|
9
|
+
module Controller
|
10
|
+
|
11
|
+
module RedirectAfterActionTo
|
12
|
+
extend ActiveSupport::Concern
|
13
|
+
include PublicResources
|
14
|
+
|
15
|
+
[:create, :update, :destroy].each do |action|
|
16
|
+
define_method(action) do |&block|
|
17
|
+
super() do |success, failure|
|
18
|
+
block.call(success, failure) unless block.nil?
|
19
|
+
|
20
|
+
action_redirect = redirect_after_action[action_name.to_sym]
|
21
|
+
|
22
|
+
unless action_redirect.nil?
|
23
|
+
success.html do
|
24
|
+
keep_flash = action_redirect[:keep_flash]
|
25
|
+
path = action_redirect[:path]
|
26
|
+
parsed_path = if path.try(:lambda?)
|
27
|
+
path.call(self).to_s
|
28
|
+
else
|
29
|
+
path.to_s
|
30
|
+
end
|
31
|
+
|
32
|
+
flash.keep if keep_flash
|
33
|
+
redirect_to parsed_path
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
def redirect_after_action
|
41
|
+
self.class.redirect_after_action
|
42
|
+
end
|
43
|
+
|
44
|
+
module ClassMethods
|
45
|
+
|
46
|
+
def redirect_after_action
|
47
|
+
@redirect_after_action ||= {}
|
48
|
+
end
|
49
|
+
|
50
|
+
def redirect_after_action_to(actions:, path:, keep_flash: true)
|
51
|
+
unless actions.respond_to? :each
|
52
|
+
actions = [actions]
|
53
|
+
end
|
54
|
+
|
55
|
+
actions.each do |action|
|
56
|
+
parsed_action = if action.try(:lambda?)
|
57
|
+
action.call.to_sym
|
58
|
+
else
|
59
|
+
action.to_sym
|
60
|
+
end
|
61
|
+
|
62
|
+
redirect_after_action[parsed_action] = {
|
63
|
+
path: path,
|
64
|
+
keep_flash: keep_flash
|
65
|
+
}
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
def redirect_after_action_to_member_url(
|
70
|
+
actions:,
|
71
|
+
url_helper:,
|
72
|
+
keep_flash: true
|
73
|
+
)
|
74
|
+
redirect_after_action_to(
|
75
|
+
actions: actions,
|
76
|
+
path: ->(controller) {
|
77
|
+
controller.send(url_helper, controller.send(:resource))
|
78
|
+
},
|
79
|
+
keep_flash: keep_flash
|
80
|
+
)
|
81
|
+
end
|
82
|
+
|
83
|
+
end
|
84
|
+
|
85
|
+
end
|
86
|
+
|
87
|
+
end
|
88
|
+
|
89
|
+
end
|
90
|
+
|
91
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
require 'active_admin/extensions/version'
|
2
|
+
require 'active_admin/extensions/controller/action_status'
|
3
|
+
require 'active_admin/extensions/controller/flash_messages'
|
4
|
+
require 'active_admin/extensions/controller/redirect_after_action_to'
|
5
|
+
require 'active_admin/extensions/controller/per_page_lambda'
|
6
|
+
require 'active_admin/extensions/controller/public_resources'
|
7
|
+
|
8
|
+
module ActiveAdmin
|
9
|
+
module Extensions
|
10
|
+
class Engine < ::Rails::Engine #:nodoc:
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
metadata
ADDED
@@ -0,0 +1,133 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: active_admin-extensions
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Fire-Dragon-DoL
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-11-12 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.6'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.6'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: i18n
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: activeadmin
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: activesupport
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
description: Collection of extensions for ActiveAdmin
|
84
|
+
email:
|
85
|
+
- francesco.belladonna@gmail.com
|
86
|
+
executables: []
|
87
|
+
extensions: []
|
88
|
+
extra_rdoc_files: []
|
89
|
+
files:
|
90
|
+
- ".gitignore"
|
91
|
+
- ".ruby-version"
|
92
|
+
- Gemfile
|
93
|
+
- LICENSE.txt
|
94
|
+
- README.md
|
95
|
+
- Rakefile
|
96
|
+
- active_admin-extensions.gemspec
|
97
|
+
- config/locales/en.yml
|
98
|
+
- config/locales/it.yml
|
99
|
+
- lib/active_admin/extensions.rb
|
100
|
+
- lib/active_admin/extensions/controller/action_status.rb
|
101
|
+
- lib/active_admin/extensions/controller/flash_messages.rb
|
102
|
+
- lib/active_admin/extensions/controller/flash_messages/create.rb
|
103
|
+
- lib/active_admin/extensions/controller/flash_messages/destroy.rb
|
104
|
+
- lib/active_admin/extensions/controller/flash_messages/update.rb
|
105
|
+
- lib/active_admin/extensions/controller/per_page_lambda.rb
|
106
|
+
- lib/active_admin/extensions/controller/public_resources.rb
|
107
|
+
- lib/active_admin/extensions/controller/redirect_after_action_to.rb
|
108
|
+
- lib/active_admin/extensions/version.rb
|
109
|
+
homepage: ''
|
110
|
+
licenses:
|
111
|
+
- MIT
|
112
|
+
metadata: {}
|
113
|
+
post_install_message:
|
114
|
+
rdoc_options: []
|
115
|
+
require_paths:
|
116
|
+
- lib
|
117
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
118
|
+
requirements:
|
119
|
+
- - ">="
|
120
|
+
- !ruby/object:Gem::Version
|
121
|
+
version: '0'
|
122
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
123
|
+
requirements:
|
124
|
+
- - ">="
|
125
|
+
- !ruby/object:Gem::Version
|
126
|
+
version: '0'
|
127
|
+
requirements: []
|
128
|
+
rubyforge_project:
|
129
|
+
rubygems_version: 2.2.2
|
130
|
+
signing_key:
|
131
|
+
specification_version: 4
|
132
|
+
summary: Collection of extensions for ActiveAdmin
|
133
|
+
test_files: []
|