hanami-mongoid 0.1.8 → 0.1.9
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/Gemfile.lock +5 -5
- data/lib/hanami/mongoid/repository.rb +1 -1
- data/lib/hanami/mongoid/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4899d96f7a1bf32a08b5727fcf0ea454719b7357178e0fe74dce69b0eccb6e4b
|
|
4
|
+
data.tar.gz: ca982b9f386909848a0b3b93ee02069cb6b3ff304596d357adf9307634d8ab34
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a72f0d67f09df26d26bbcc1e517a3e4ce374b44cbce435d8bb990fa9987657ccddb1a1aa7ac810bdc6ef25081a59c3ed1f69cd0d1d2fadf7f1e360caa9dd41ef
|
|
7
|
+
data.tar.gz: 2d71868da4be46153a13f4d63066c3c294932952eaeae2bbc326d58afeb46380ac7be6ca7a824ff2e1aa9649469e4f5cbdd6f27109f9389df7d1227ecd635d7c
|
data/Gemfile.lock
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
hanami-mongoid (0.1.
|
|
4
|
+
hanami-mongoid (0.1.9)
|
|
5
5
|
mongoid
|
|
6
6
|
|
|
7
7
|
GEM
|
|
8
8
|
remote: https://rubygems.org/
|
|
9
9
|
specs:
|
|
10
|
-
activemodel (5.2.
|
|
11
|
-
activesupport (= 5.2.
|
|
12
|
-
activesupport (5.2.
|
|
10
|
+
activemodel (5.2.3)
|
|
11
|
+
activesupport (= 5.2.3)
|
|
12
|
+
activesupport (5.2.3)
|
|
13
13
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
14
14
|
i18n (>= 0.7, < 2)
|
|
15
15
|
minitest (~> 5.1)
|
|
@@ -20,7 +20,7 @@ GEM
|
|
|
20
20
|
i18n (1.6.0)
|
|
21
21
|
concurrent-ruby (~> 1.0)
|
|
22
22
|
minitest (5.11.3)
|
|
23
|
-
mongo (2.
|
|
23
|
+
mongo (2.8.0)
|
|
24
24
|
bson (>= 4.4.2, < 5.0.0)
|
|
25
25
|
mongoid (7.0.2)
|
|
26
26
|
activemodel (>= 5.1, < 6.0.0)
|
|
@@ -12,7 +12,7 @@ module Hanami
|
|
|
12
12
|
|
|
13
13
|
##
|
|
14
14
|
# Forwards common repository methods to the model
|
|
15
|
-
%i( find find_by where any_of all first last
|
|
15
|
+
%i( find find_by where any_of all none first last
|
|
16
16
|
destroy_all delete_all update_all ).each do |method|
|
|
17
17
|
define_method method do |*args|
|
|
18
18
|
self.model_klass.send method, *args
|