wouter-views 0.0.1 → 0.0.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/README.md +1 -1
- data/lib/wouter/views.rb +1 -1
- data/wouter-views.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 60b3bc086030dd099363e25f3b4bc6c564d1e7ced220ce5bdb08baf0c1cc0cc0
|
4
|
+
data.tar.gz: e767c7507a46f98090280e404261d8ad3d2475cee739ee90dcb9a264033a26dd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e8874d0037b8bb8b146b2bbe8f9fe09b65c2f13c532d88cae67f6de05e8a304ef1cb74ee5418fa2a5a3ce318ba940f34c74f8cfe05d88161ff2e5befb9e78fe8
|
7
|
+
data.tar.gz: 310454193dec78f645833089e6598af13379675031ab90069c32d2d57fc92907386659ca88dfce8ba0e9c0b80b81f46ac36e844e044957b9972a6b66a095db7f
|
data/README.md
CHANGED
data/lib/wouter/views.rb
CHANGED
@@ -12,7 +12,7 @@ class Wouter
|
|
12
12
|
|
13
13
|
return Tilt.new(full_path).render(bind) if File.exists?(full_path)
|
14
14
|
|
15
|
-
full_path = dir + '/' + template
|
15
|
+
full_path = dir + '/' + template.to_s
|
16
16
|
|
17
17
|
if Tilt.template_for('./test/fixtures/views/fallback.txt')
|
18
18
|
Tilt.new(full_path).render(bind)
|
data/wouter-views.gemspec
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = 'wouter-views'
|
5
5
|
s.platform = Gem::Platform::RUBY
|
6
|
-
s.version = '0.0.
|
6
|
+
s.version = '0.0.2'
|
7
7
|
s.summary = 'View template support for Wouter web framework.'
|
8
8
|
s.description = 'Adds view template support to the Wouter web framework.'
|
9
9
|
s.authors = ['Robert Peterson']
|