horza 1.0.2 → 1.0.3
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/horza/dependency_loading.rb +1 -1
- data/lib/horza/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: 3db9ddac07cee545eed1dcf86997aa86fa7ba8ce859864a42bd89368540c6b12
|
|
4
|
+
data.tar.gz: c471c188bdd7a34025e3aac8ec11fe74acb350684ebc64383bf0c7e1341f40f8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f2502474a7593705bc655a31751a865bb09dd86340753945ef551d5e40e1202ba05b92fa4222835ba60b792f56edb1de0cf43458cf1121acc09cc21b483f7df2
|
|
7
|
+
data.tar.gz: 8e11d33d9ac2bd70aecaeddb80834a792ac2dbb2f09776609d5c85e529c6da204f6141b770ede6452d29f2bc9965d707421238a51a3deb830b3a1a441cdff5b8
|
|
@@ -16,7 +16,7 @@ module Horza
|
|
|
16
16
|
if Horza.constant_paths.empty?
|
|
17
17
|
# try in current scope, even with no lookup paths configured
|
|
18
18
|
begin
|
|
19
|
-
entity_name.
|
|
19
|
+
entity_name.camelize.constantize
|
|
20
20
|
rescue NameError
|
|
21
21
|
raise ArgumentError.new("No file paths configured to lookup constants")
|
|
22
22
|
end
|
data/lib/horza/version.rb
CHANGED