motor-admin 0.4.33 → 0.4.35

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: 0d3073a25a3b0261755507001390f0707e6e795b1cd015426d61e7aad6fb32b8
4
- data.tar.gz: e7aec3bf0ff84b5506142ac1630dacba519b9b844bcc26db4b1bc80bcfd1c854
3
+ metadata.gz: b4ebe359c7d947cea801272710f666a4c5535b1f5f814cce0d6c8766568fc5fc
4
+ data.tar.gz: 5fa9aa92b935aba32c573a1d9c33ed1252640707642cf856b1a0942f0749400f
5
5
  SHA512:
6
- metadata.gz: 0cf73f7d1a3d96df55598370e84204fb381931702f20457bb21019129eba9b727f4d4600a77471db40eac745bf5aed69605437f8c54e4ec11d3a428719cf2888
7
- data.tar.gz: 24ed3db8df9801d36f0a72cd9eea13bd1fab51e3bd88a08564e9ef32412e871e5f62e870d80d2feebd168f758d2f10fa84bcff9df20f3db2470888913cec9dc0
6
+ metadata.gz: ffabcbbe5811a28466b4a03ec7d718b3cb8c703ede6c71eecaa0cf6d7ffc04fd9bb2102e9611ac282b3fb2e6b0fec12c4857eced96a6da6200787e2584b06ac6
7
+ data.tar.gz: 95f5a8cc8bf97e172f2bc65bfc030f55fd3706d187b3a2ee576bbeb51ae896823e3a1d57753579c0cfce646ed8a7beccf73473c22b189aa722bbc050f6dc921c
@@ -1,17 +1,19 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- module Motor
4
- class Audit < Audited::Audit
5
- self.table_name = 'motor_audits'
3
+ unless defined?(Motor::Audit)
4
+ module Motor
5
+ class Audit < Audited::Audit
6
+ self.table_name = 'motor_audits'
6
7
 
7
- if Rails.version.to_f >= 7.2
8
- superclass.abstract_class = true
9
- end
8
+ if Rails.version.to_f >= 7.2
9
+ superclass.abstract_class = true
10
+ end
10
11
 
11
- if Rails.version.to_f >= 7.1
12
- serialize :audited_changes, coder: HashSerializer
13
- else
14
- serialize :audited_changes, HashSerializer
12
+ if Rails.version.to_f >= 7.1
13
+ serialize :audited_changes, coder: HashSerializer
14
+ else
15
+ serialize :audited_changes, HashSerializer
16
+ end
15
17
  end
16
18
  end
17
19
  end
@@ -97,7 +97,7 @@ module ActiveRecord
97
97
  relations << js
98
98
  end
99
99
  end
100
- elsif reflection = klass._reflections[key.to_s]
100
+ elsif reflection = klass._reflections[key.to_s] || klass._reflections[key.to_sym]
101
101
  if value.is_a?(Hash)
102
102
  relations <<
103
103
  if reflection.polymorphic?
@@ -110,15 +110,27 @@ module Motor
110
110
 
111
111
  columns = Resources::CustomSqlColumnsCache.call(config[:custom_sql])
112
112
 
113
+ base_column = klass.connection.schema_cache.columns_hash(klass.table_name).first.last
114
+
113
115
  columns_hash =
114
116
  columns.each_with_object({}) do |column, acc|
115
117
  acc[column[:name]] =
116
- ActiveRecord::ConnectionAdapters::Column.new(
117
- column[:name],
118
- nil,
119
- ActiveRecord::ConnectionAdapters::SqlTypeMetadata.new(sql_type: column[:column_type],
120
- type: column[:column_type].to_sym)
121
- )
118
+ if Rails.version.to_f >= 7.2
119
+ base_column.class.new(
120
+ column[:name],
121
+ nil,
122
+ base_column.sql_type_metadata.class.new(
123
+ ActiveRecord::ConnectionAdapters::SqlTypeMetadata.new(sql_type: column[:column_type],
124
+ type: column[:column_type].to_sym))
125
+ )
126
+ else
127
+ ActiveRecord::ConnectionAdapters::Column.new(
128
+ column[:name],
129
+ nil,
130
+ ActiveRecord::ConnectionAdapters::SqlTypeMetadata.new(sql_type: column[:column_type],
131
+ type: column[:column_type].to_sym)
132
+ )
133
+ end
122
134
  end
123
135
 
124
136
  klass.instance_variable_set(:@__motor_custom_sql_columns_hash, columns_hash)
data/lib/motor/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Motor
4
- VERSION = '0.4.33'
4
+ VERSION = '0.4.35'
5
5
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: motor-admin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.33
4
+ version: 0.4.35
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pete Matsyburka
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-12-21 00:00:00.000000000 Z
10
+ date: 2025-02-21 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: ar_lazy_preload
@@ -2253,7 +2252,6 @@ files:
2253
2252
  - ui/dist/main-60caa963812c952cdd66.css.gz
2254
2253
  - ui/dist/main-60caa963812c952cdd66.js.gz
2255
2254
  - ui/dist/manifest.json
2256
- homepage:
2257
2255
  licenses:
2258
2256
  - MIT
2259
2257
  metadata:
@@ -2280,8 +2278,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
2280
2278
  - !ruby/object:Gem::Version
2281
2279
  version: '0'
2282
2280
  requirements: []
2283
- rubygems_version: 3.5.11
2284
- signing_key:
2281
+ rubygems_version: 3.6.2
2285
2282
  specification_version: 4
2286
2283
  summary: Low-code Admin panel and Business intelligence
2287
2284
  test_files: []