rack-scriptstacker 0.1.4 → 0.1.5
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/rack/scriptstacker.rb +3 -1
- data/lib/rack/scriptstacker/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: 7b9d8da8cfc40e125ab98de854259506c412a9fe
|
4
|
+
data.tar.gz: 0ccf2fdf52175176266a80d8bee42ac141ca7627
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e94cb645e0f0a65a018f62111cdfcfc7a3cba3dca21bf6c785dd2e8471f685979d3aa5a946dbde369d1175c58646b3f2c2f2bf56ad026ec22f09372ccee411b9
|
7
|
+
data.tar.gz: 9c7407334f4a83bc2326f4742487c4b2406de8f44bc22dfc087d766b02112aa4f684d9b3aca1c4bf1a3ae629ca38b1d05c0326ee5ff8ee1481e6c5bcb836e527
|
data/lib/rack/scriptstacker.rb
CHANGED
@@ -167,7 +167,9 @@ module Rack
|
|
167
167
|
[name, Stacker.new(config)]
|
168
168
|
end.to_h
|
169
169
|
|
170
|
-
path_specs.
|
170
|
+
path_specs.select do |name, specs|
|
171
|
+
stackers.has_key? name
|
172
|
+
end.each do |name, specs|
|
171
173
|
specs.each do |spec|
|
172
174
|
stackers[name].find_files spec.source_path, spec.serve_path
|
173
175
|
end
|