effective_resources 2.2.11 → 2.2.12
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/app/models/effective/resources/paths.rb +18 -2
- data/lib/effective_resources/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a2e1045a3f584c05b66281ec3239905cd43100ee124bf9c0fdcfeff7d289fd6f
|
4
|
+
data.tar.gz: 6276115c7a5104f3f51ce56c54681c0ab775fb63c8ff2f362e3f6fd51fcfebde
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b5dfd7efe2f70a7b9b5aa337cfbe915700fa211006e95d5d754e631565a1301367e7690b650394c19681bf3a47f2645ecdc1a02fef850abc3931d65c36893228
|
7
|
+
data.tar.gz: 768dbb29366b8ad1df0cc5e9deed4f3e2c216df6de6175c60384033524f12a49c5425b900e16f6c71cd5fa0cf7e4c537aab28f4b824955ec0ee95e651422bd2f
|
@@ -8,18 +8,34 @@ module Effective
|
|
8
8
|
Tenant.engine_path(tenant).sub("#{Rails.root}/", '') if tenant?
|
9
9
|
end
|
10
10
|
|
11
|
+
# Model
|
11
12
|
def model_file
|
12
13
|
File.join(*[tenant_path, 'app/models', class_path, "#{name}.rb"].compact)
|
13
14
|
end
|
14
15
|
|
16
|
+
# Controller
|
15
17
|
def controller_file
|
16
18
|
File.join(*[tenant_path, 'app/controllers', class_path, namespace, "#{plural_name}_controller.rb"].compact)
|
17
19
|
end
|
18
20
|
|
21
|
+
def admin_effective_controller_file
|
22
|
+
File.join(*[tenant_path, 'app/controllers', namespace, "#{plural_name}_controller.rb"].compact)
|
23
|
+
end
|
24
|
+
|
25
|
+
# Datatable
|
19
26
|
def datatable_file
|
20
27
|
File.join(*[tenant_path, 'app/datatables', class_path, namespace, "#{plural_name}_datatable.rb"].compact)
|
21
28
|
end
|
22
29
|
|
30
|
+
def effective_datatable_file
|
31
|
+
File.join(*[tenant_path, 'app/datatables', namespace, "effective_#{plural_name}_datatable.rb"].compact)
|
32
|
+
end
|
33
|
+
|
34
|
+
def admin_effective_datatable_file
|
35
|
+
File.join(*[tenant_path, 'app/datatables', namespace, "effective_#{plural_name}_datatable.rb"].compact)
|
36
|
+
end
|
37
|
+
|
38
|
+
# Views
|
23
39
|
def view_file(action = :index, partial: false)
|
24
40
|
File.join(*[tenant_path, 'app/views', class_path, namespace, plural_name, "#{'_' if partial}#{action}.html.haml"].compact)
|
25
41
|
end
|
@@ -28,8 +44,8 @@ module Effective
|
|
28
44
|
File.join(*[class_path, namespace, plural_name, action].compact)
|
29
45
|
end
|
30
46
|
|
31
|
-
def
|
32
|
-
File.join(*[tenant_path, 'app/views',
|
47
|
+
def admin_effective_view_file(action = :index, partial: false)
|
48
|
+
File.join(*[tenant_path, 'app/views', namespace, plural_name, "#{'_' if partial}#{action}.html.haml"].compact)
|
33
49
|
end
|
34
50
|
|
35
51
|
def routes_file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: effective_resources
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.2.
|
4
|
+
version: 2.2.12
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Code and Effect
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-01
|
11
|
+
date: 2023-02-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|