persisto 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/persisto/repository.rb +1 -1
- data/lib/persisto/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 900c9c2cd05df7b7bcddb1c57d84416b97b3039b
|
4
|
+
data.tar.gz: fc609fb3c2a8cda9bee06149e98f7a74852ca204
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7e02ec3d22917323b48752a4a3d937477e59caa801991ea15e15c0fa3a75602fa256ae66fd94e49f237d1ef67229329e629cd372e398c5eaad92b33342726942
|
7
|
+
data.tar.gz: 89610f113177f0666f00f0e8e17ad8e7263d2406dc68e58b18d418ea8c74ee2881fe8bedad54b68ddf9538b9dcbca4f05eca2d726c30b4a55e241675885b6215
|
data/lib/persisto/repository.rb
CHANGED
@@ -37,7 +37,7 @@ module Persisto
|
|
37
37
|
end
|
38
38
|
|
39
39
|
def store store_name
|
40
|
-
@stores[store_name] ||= self.class.store_registry[store_name].new(adaptor, self.class.mapper)
|
40
|
+
@stores[store_name] ||= self.class.store_registry[store_name].new(adaptor, self.class.mapper.new)
|
41
41
|
end
|
42
42
|
end
|
43
43
|
end
|
data/lib/persisto/version.rb
CHANGED