arkaan 0.6.5 → 0.6.6
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/arkaan/utils/micro_service.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: 990dd1204014a2241d93c049873631e6bd19442a
|
|
4
|
+
data.tar.gz: 73599f9db6d8ee56d7ccd0c665459f3cba3cea24
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 07c55ad6c8284681b6994b384e54b8e6137bfd4b96fddb6f26606db516de120dbc92350b9eeac0c3bb263ab26b4fc6ea4f54f09107820fe19fd436224e1396a7
|
|
7
|
+
data.tar.gz: c4e6bca85159b2a824f9fa99cce844ee0811166688e75c5a79bcb9a282f9f505743dcdaeb5d4dd3f115507d0b86cdbed1935f6f7c0bd832639171442042fa421
|
|
@@ -46,7 +46,7 @@ module Arkaan
|
|
|
46
46
|
# Require all the files from a folder iteratively by assembling the parts given as parameters.
|
|
47
47
|
# @param paths_elements [Array<String>] the elements to assemble to form the path of the folder.
|
|
48
48
|
def require_folder(*paths_elements)
|
|
49
|
-
File.join(paths_elements, '**', '*.rb').each { |filename| block.call(filename) }
|
|
49
|
+
Dir[File.join(paths_elements, '**', '*.rb')].each { |filename| block.call(filename) }
|
|
50
50
|
end
|
|
51
51
|
|
|
52
52
|
# Requires and loads the mongoid configuration from its default location.
|