waitress-core 0.4.1 → 0.4.2
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/waitress/handlers/libhandler.rb +1 -1
- data/lib/waitress/kernel.rb +7 -1
- data/lib/waitress/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 54fb87588d72df10b89f0ec92115c35284ba4d16
|
|
4
|
+
data.tar.gz: 0cddde327a2e16e81af8ffdaffb691ad73306c76
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cc0c61ad8c0ae667b8ef0fb4804ba0293a8540941b0e31bcd42da75006c0287f248aef460ac4e6360d165d66dec245cc9768f98b48059015a011f9d109996c21
|
|
7
|
+
data.tar.gz: aa03ee737f109dde2c9fe857b80ca0bd7f4ff030328749ecf8ac6e20fee6cd3a846b8bef852ba266cc3c624f0702d27f6d515e02e225829b4f7af97976af021d
|
|
@@ -79,7 +79,7 @@ module Waitress
|
|
|
79
79
|
Waitress::LESSWatcher.new(map) { |file| compile_less(file, lessdir) }
|
|
80
80
|
end
|
|
81
81
|
else
|
|
82
|
-
File.write(entry, File.join(Waitress::Chef.resources, "default_less.yml"))
|
|
82
|
+
File.write(entry, File.read(File.join(Waitress::Chef.resources, "default_less.yml")))
|
|
83
83
|
end
|
|
84
84
|
end
|
|
85
85
|
|
data/lib/waitress/kernel.rb
CHANGED
|
@@ -50,7 +50,13 @@ module ::Kernel
|
|
|
50
50
|
def combo name
|
|
51
51
|
name = name.to_sym
|
|
52
52
|
combo_arr = $VHOST.combos[name]
|
|
53
|
-
combo_arr.each
|
|
53
|
+
combo_arr.each do |n|
|
|
54
|
+
if $VHOST.combos.include? n.to_sym
|
|
55
|
+
combo(n)
|
|
56
|
+
else
|
|
57
|
+
lib(n)
|
|
58
|
+
end
|
|
59
|
+
end
|
|
54
60
|
end
|
|
55
61
|
|
|
56
62
|
# Include another .wrb, .rb or any other file in the load path of the VHost into this
|
data/lib/waitress/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: waitress-core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jaci Brunning
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-10-
|
|
11
|
+
date: 2015-10-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|