fedux_org-stdlib 0.6.26 → 0.6.27
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/fedux_org_stdlib/file_template.rb +2 -2
- data/lib/fedux_org_stdlib/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: ed8834c77a2bac7cef14333384e2ff2fabdedfa9
|
4
|
+
data.tar.gz: 7bf75e4888160ca7c3f4c899d4e5f8e285525be8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2524283e1bef51651c87e3993f53afcb75e7bdc2b908fcedec5b8c93afd64567a0bfa35bd51f004599b6d5fef6677a89675ec6c1732b9a514bfea4de82891523
|
7
|
+
data.tar.gz: 2b6fa0ba0d582d052c6da0c30541da5e48ac91f9b47b21f20a71935367c9526e2a1fd8b34ee8e5741def24a9c73cfe65dc5a19e98e61a930ad5ef4874d4a7ad0
|
data/Gemfile.lock
CHANGED
@@ -172,14 +172,14 @@ module FeduxOrgStdlib
|
|
172
172
|
paths << ::File.expand_path(::File.join('~', '.config', _application_name, 'templates', _template_file))
|
173
173
|
paths << ::File.expand_path(::File.join('~', format('.%s', _application_name), 'templates', _template_file))
|
174
174
|
paths << ::File.expand_path(::File.join('/etc', _application_name, 'templates', _template_file))
|
175
|
-
paths << ::File.expand_path(
|
175
|
+
paths << ::File.expand_path(::File.join(_fallback_template_directory, _template_file)) if _fallback_template_directory
|
176
176
|
|
177
177
|
paths
|
178
178
|
end
|
179
179
|
|
180
180
|
|
181
181
|
# Use this path as fall back path
|
182
|
-
def
|
182
|
+
def _fallback_template_directory; end
|
183
183
|
|
184
184
|
def _class_name
|
185
185
|
self.class.name.to_s.demodulize
|