We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
erb
1 parent cb33850 commit 7765739Copy full SHA for 7765739
CHANGELOG.md
@@ -100,7 +100,9 @@
100
101
* Add `Math` module to corelib.
102
103
-* Use `//#` instead of `//@` deprecated syntax for sourceMappingURL
+* Use `//#` instead of `//@` deprecated syntax for sourceMappingURL.
104
+
105
+* Implicitly require `erb` from stdlib when including erb templates.
106
107
## 0.5.5 2013-11-25
108
lib/opal/sprockets/erb.rb
@@ -18,8 +18,9 @@ def initialize_engine
18
def prepare
19
end
20
21
- def evaluate(scope, locals, &block)
22
- Opal::ERB.compile data, scope.logical_path.sub(/^templates\//, '')
+ def evaluate(context, locals, &block)
+ context.require_asset 'erb'
23
+ Opal::ERB.compile data, context.logical_path.sub(/^templates\//, '')
24
25
26
0 commit comments