vueck 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/plugin.rb +1 -1
- data/vueck.gemspec +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: 456834fef44f72ca6b1feb4a7a217c116e75ee77
|
4
|
+
data.tar.gz: 4952d3affb5e9233ca19908f2d45ce072ee0b4a6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 576bd54bb9ae17f892d4a781e1585468e0a2b4b87fbc086bb521c3b134f424cf672123122ca2e66011063b124be1b593dd18bef0d5e73a149fb006caa5c044cb
|
7
|
+
data.tar.gz: ad93db27e3b615f85e3b1811cadc5536079ce27758b0282db6d46de4515d8e348be0a923a013eb81ee6e603a0e71e818b035eba8fee6a73caea75ab394d22ca1
|
data/lib/plugin.rb
CHANGED
@@ -16,7 +16,7 @@ module VueCK
|
|
16
16
|
end
|
17
17
|
|
18
18
|
def call(env)
|
19
|
-
return unless env["REQUEST_METHOD"] == "GET"
|
19
|
+
return @app.call(env) unless env["REQUEST_METHOD"] == "GET"
|
20
20
|
path = env["PATH_INFO"]
|
21
21
|
return @app.call(env) unless REQUEST_MAP[path]
|
22
22
|
vueck = VueCK.new REQUEST_MAP[path][:file]
|
data/vueck.gemspec
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'vueck'
|
3
3
|
s.homepage = 'https://github.com/adamrdrew/vueck'
|
4
|
-
s.version = '1.0.
|
4
|
+
s.version = '1.0.3'
|
5
5
|
s.date = '2018-01-30'
|
6
6
|
s.summary = "VueCK"
|
7
7
|
s.description = "Rack middleware for compiling and serving VueJS single file components"
|