merb-core 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.
data/lib/merb-core.rb
CHANGED
@@ -122,7 +122,7 @@ module Merb::RenderMixin
|
|
122
122
|
# Raise an error if there's no template
|
123
123
|
unless template_method && self.respond_to?(template_method)
|
124
124
|
template_files = Merb::Template.template_extensions.map { |ext| "#{template_location}.#{ext}" }
|
125
|
-
raise TemplateNotFound, "Oops! No template found. Merb was looking for #{template_files.join(', ')}" +
|
125
|
+
raise TemplateNotFound, "Oops! No template found. Merb was looking for #{template_files.join(', ')} " +
|
126
126
|
"for content type '#{content_type}'. You might have mispelled the template or file name. " +
|
127
127
|
"Registered template extensions: #{Merb::Template.template_extensions.join(', ')}. " +
|
128
128
|
"If you use Haml or some other template plugin, make sure you required Merb plugin dependency " +
|
data/lib/merb-core/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: merb-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ezra Zygmuntowicz
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2008-11-
|
12
|
+
date: 2008-11-25 00:00:00 -08:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|