wcc-base 0.3.6 → 0.3.7
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/lib/tasks/db.rake +1 -1
- data/lib/wcc/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: 538474ad8724ec753468035228127cc2b6789791ef6b2aa8c1f8be819f19083c
|
|
4
|
+
data.tar.gz: 956d69bd02854d9bdd39b4b098b7664253427979e0ad25ea78c3f871dfa8cbb9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 24e1aebca7cc802fbda6baba9a4e2b68aae62747b6dd82e1322427532a8844f768feb68a581960a6ed2986741ce1ae36a071f4b64ef44a0e7bd853c4982e43ea
|
|
7
|
+
data.tar.gz: a72fea8f54251ac1908ea3eee6e29d35e6f167e8bf057423a21ad0f67e7fea2509c2bd2243870d7266ff9fe5b78b3e613cc7d323410f231f639a51d77b3bccc4
|
data/lib/tasks/db.rake
CHANGED
|
@@ -32,7 +32,7 @@ module WCC
|
|
|
32
32
|
else
|
|
33
33
|
# We only go down this path if DATABASE_URL is not set, otherwise we would lode the config via ActiveRecord.
|
|
34
34
|
# In psych 3.1 they changed the "aliases" param to be a kwarg instead of a positional argument.
|
|
35
|
-
raise 'Psych version < 3.1.0 not supported' if Psych::
|
|
35
|
+
raise 'Psych version < 3.1.0 not supported' if Psych::VERSION < '3.1.0'
|
|
36
36
|
@yaml_file ||= YAML.safe_load(ERB.new(File.read('config/database.yml' )).result, aliases: true)
|
|
37
37
|
end
|
|
38
38
|
rescue SystemCallError
|
data/lib/wcc/version.rb
CHANGED