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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cd09d6add5f00d00573d998139d60d3fb29d7ef34af02f0e6a0edc3493480d80
4
- data.tar.gz: 24a8993ebecfdc5204f34e370bca4c4a970a65a5ebb9ac7f5d412a00403c786b
3
+ metadata.gz: a2e1045a3f584c05b66281ec3239905cd43100ee124bf9c0fdcfeff7d289fd6f
4
+ data.tar.gz: 6276115c7a5104f3f51ce56c54681c0ab775fb63c8ff2f362e3f6fd51fcfebde
5
5
  SHA512:
6
- metadata.gz: 6fa8aa630baa7d68b8c66e22fa9a3700179ebf593e267640216b4138789518064c1097bd0449231a2abb11153f0de93dbd2e7bf69fc9df770064fe6934ce0896
7
- data.tar.gz: cd135c29a2f6cbea33eafe561e062e9b6659522403c781099aa23e9f17e0b860590eb0fea2f54d995ab42e63cb01abe92ac1304305bcfa7b8c7342e2d00b528b
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 flat_view_file(action = :index, partial: false)
32
- File.join(*[tenant_path, 'app/views', class_path, plural_name, "#{'_' if partial}#{action}.html.haml"].compact)
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
@@ -1,3 +1,3 @@
1
1
  module EffectiveResources
2
- VERSION = '2.2.11'.freeze
2
+ VERSION = '2.2.12'.freeze
3
3
  end
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.11
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-31 00:00:00.000000000 Z
11
+ date: 2023-02-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails