tallty_duck_record 1.1.1 → 1.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/duck_record/base.rb +15 -14
- data/lib/duck_record/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: e76c47a46726cc7d60f7386b25dd5d14fb70127f6dca09e825c745b00679ace1
|
4
|
+
data.tar.gz: 046df1437a032edf1aaf1c19866fccd84c5388435247c1cfd5c60f9f632ad321
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 523d863290eec53bb5edc68fa360499b631a7301a193c17f63f43602548e45e2064be496b8e60bcaacefff8d35b4b34ecff3d682b4b5d8bf2b4c32832721df18
|
7
|
+
data.tar.gz: f054891f0c2f22d10fc56c18a7bdc8d106280972a85dedb7adcde3752e9aabb6715507473336b0e50acc13ceeee7d1da59f058c1d6da6a9701aa666c64a3ef38
|
data/lib/duck_record/base.rb
CHANGED
@@ -1,18 +1,19 @@
|
|
1
1
|
require "yaml"
|
2
|
-
require
|
3
|
-
require "active_support/
|
4
|
-
require "active_support/
|
5
|
-
require "active_support/
|
6
|
-
require "active_support/
|
7
|
-
require "active_support/core_ext/
|
8
|
-
require "active_support/core_ext/
|
9
|
-
require "active_support/core_ext/hash/
|
10
|
-
# require "active_support/core_ext/hash/
|
11
|
-
require "active_support/core_ext/
|
12
|
-
require "active_support/core_ext/
|
13
|
-
require "active_support/core_ext/
|
14
|
-
require "active_support/core_ext/
|
15
|
-
require "active_support/core_ext/
|
2
|
+
require 'active_support'
|
3
|
+
# require "active_support/benchmarkable"
|
4
|
+
# require "active_support/dependencies"
|
5
|
+
# require "active_support/descendants_tracker"
|
6
|
+
# require "active_support/time"
|
7
|
+
# require "active_support/core_ext/module/attribute_accessors"
|
8
|
+
# require "active_support/core_ext/array/extract_options"
|
9
|
+
# require "active_support/core_ext/hash/deep_merge"
|
10
|
+
# require "active_support/core_ext/hash/slice"
|
11
|
+
# # require "active_support/core_ext/hash/transform_values"
|
12
|
+
# require "active_support/core_ext/string/behavior"
|
13
|
+
# require "active_support/core_ext/kernel/singleton_class"
|
14
|
+
# require "active_support/core_ext/module/introspection"
|
15
|
+
# require "active_support/core_ext/object/duplicable"
|
16
|
+
# require "active_support/core_ext/class/subclasses"
|
16
17
|
require "duck_record/define_callbacks"
|
17
18
|
require "duck_record/errors"
|
18
19
|
require "duck_record/attributes"
|
data/lib/duck_record/version.rb
CHANGED