active_admin_role 0.2.0 → 0.2.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 +4 -4
- data/.github/issue_template.md +23 -0
- data/Gemfile +1 -1
- data/gemfiles/5.2.gemfile +1 -1
- data/lib/active_admin_role/active_admin/dsl.rb +2 -0
- data/lib/active_admin_role/engine.rb +1 -2
- data/lib/active_admin_role/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cc81fae702ad210420f92741035d4e066e2ee74a869d0fb583a74641006f32cb
|
|
4
|
+
data.tar.gz: 10a049f9a23bdfa9bbc32d4922ed8c8443cae3b62e6df7a2b176cb92051ac4c0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e2d66f289e1556448fe0cab371ac52f97e3638862f0020c34597f9bb6c0c66e047871190a4dcb5a727fc3f55036332675d55dee75cc25bf87a708ab6730db27f
|
|
7
|
+
data.tar.gz: 92c8d0e8ea157aa476c5e213bc04babe27f15c82b0b3c8f6b3a750ef8c679572a2a780cee7f74f0e5125457f5941b31bbeab96390b69de8888051251610ef284
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
### Steps to reproduce
|
|
2
|
+
|
|
3
|
+
* Explain steps to reproduce.
|
|
4
|
+
* Paste your error logs.
|
|
5
|
+
* Tell us your repository of app, if you ok.
|
|
6
|
+
|
|
7
|
+
### Expected behavior
|
|
8
|
+
|
|
9
|
+
Tell us what should happen
|
|
10
|
+
|
|
11
|
+
### Actual behavior
|
|
12
|
+
|
|
13
|
+
Tell us what happens instead
|
|
14
|
+
|
|
15
|
+
### System configuration
|
|
16
|
+
|
|
17
|
+
**ActiveAdmin version**:
|
|
18
|
+
|
|
19
|
+
**ActiveAdminRole version**:
|
|
20
|
+
|
|
21
|
+
**Rails version**:
|
|
22
|
+
|
|
23
|
+
**Ruby version**:
|
data/Gemfile
CHANGED
data/gemfiles/5.2.gemfile
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
require "rails/engine"
|
|
2
|
+
require "active_admin_role/active_admin/dsl"
|
|
2
3
|
|
|
3
4
|
module ActiveAdminRole
|
|
4
5
|
class Engine < ::Rails::Engine
|
|
@@ -8,9 +9,7 @@ module ActiveAdminRole
|
|
|
8
9
|
end
|
|
9
10
|
|
|
10
11
|
ActiveSupport.on_load :after_initialize do
|
|
11
|
-
require "active_admin_role/active_admin/dsl"
|
|
12
12
|
require "active_admin_role/active_admin/resource_controller"
|
|
13
|
-
::ActiveAdmin::DSL.send :include, ActiveAdminRole::ActiveAdmin::Dsl
|
|
14
13
|
::ActiveAdmin::ResourceController.send :include, ActiveAdminRole::ActiveAdmin::ResourceController
|
|
15
14
|
end
|
|
16
15
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: active_admin_role
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Yoshiyuki Hirano
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-04-
|
|
11
|
+
date: 2018-04-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activeadmin
|
|
@@ -59,6 +59,7 @@ executables: []
|
|
|
59
59
|
extensions: []
|
|
60
60
|
extra_rdoc_files: []
|
|
61
61
|
files:
|
|
62
|
+
- ".github/issue_template.md"
|
|
62
63
|
- ".gitignore"
|
|
63
64
|
- ".rspec"
|
|
64
65
|
- ".rubocop.yml"
|