Skip to content

Commit 7765739

Browse files
committedJan 8, 2014
Implicitly require erb from stdlib when including erb templates
1 parent cb33850 commit 7765739

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed
 

‎CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,9 @@
100100

101101
* Add `Math` module to corelib.
102102

103-
* Use `//#` instead of `//@` deprecated syntax for sourceMappingURL
103+
* Use `//#` instead of `//@` deprecated syntax for sourceMappingURL.
104+
105+
* Implicitly require `erb` from stdlib when including erb templates.
104106

105107
## 0.5.5 2013-11-25
106108

‎lib/opal/sprockets/erb.rb

+3-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@ def initialize_engine
1818
def prepare
1919
end
2020

21-
def evaluate(scope, locals, &block)
22-
Opal::ERB.compile data, scope.logical_path.sub(/^templates\//, '')
21+
def evaluate(context, locals, &block)
22+
context.require_asset 'erb'
23+
Opal::ERB.compile data, context.logical_path.sub(/^templates\//, '')
2324
end
2425
end
2526
end

0 commit comments

Comments
 (0)