activerecord-nulldb-adapter 1.1.0 → 1.1.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: af43f27ebeb1eb1c313923392e50c59a234c1942355422e614fb3026ecb3bb13
|
|
4
|
+
data.tar.gz: 2c60b7ed36c6da832eaf7f0dcfd3e31c555a9735283903fed26e80f168a7905c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8b09032c9f0421c412fab061201d1381a4fd3b265b5c8a00d5ced214201aade646ed7a9d8ae207c3c015aeb30cf7ddf5d21f429864262cb7a791f7a1c0ad8fb9
|
|
7
|
+
data.tar.gz: 8792abf6acf27101e8fc0e1c3a2806a16e629d5cc14fd660a12833d1afff4aed679030948799646dd321746117f5f6282100f8ffa391b598f6f310f08466a93c
|
data/CHANGES.md
CHANGED
|
@@ -13,7 +13,7 @@ class ActiveRecord::ConnectionAdapters::NullDBAdapter
|
|
|
13
13
|
alias_method :jsonb, :json if method_defined? :json
|
|
14
14
|
alias_method :hstore, :json
|
|
15
15
|
|
|
16
|
-
def unique_constraint(
|
|
16
|
+
def unique_constraint(*args, **kwargs, &block); end
|
|
17
17
|
|
|
18
18
|
if ::ActiveRecord::VERSION::MAJOR >= 7 && ::ActiveRecord::VERSION::MINOR >= 1
|
|
19
19
|
# Avoid check for option validity
|
data/lib/nulldb/version.rb
CHANGED