Skip to content

Commit 39632b8

Browse files
committedJan 8, 2014
Implicitly require 'opal-haml' when a haml template is required
1 parent ea15b55 commit 39632b8

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed
 

‎CHANGELOG.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
1+
## edge
2+
3+
* Implicitly require `opal-haml` when any haml template is required
4+
15
## 0.2.0 2013-12-17
26

3-
* Remove opal-sprockets dependency
7+
* Remove opal-sprockets dependency
48

59
## 0.1.0 2013-12-17
610

7-
* Initial release
11+
* Initial release

‎Gemfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
source 'https://rubygems.org'
22
gemspec
33

4-
gem 'opal', '~> 0.5.0'
4+
gem 'opal', :github => 'opal/opal'
5+
gem 'opal-rspec', '0.3.0.beta2'

‎lib/opal/haml/processor.rb

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

20-
def evaluate(scope, locals, &block)
21-
Opal::Haml.compile data, scope.logical_path.sub(/^templates\//, '')
20+
def evaluate(context, locals, &block)
21+
context.require_asset 'opal-haml'
22+
Opal::Haml.compile data, context.logical_path.sub(/^templates\//, '')
2223
end
2324
end
2425
end

‎spec/haml_spec.rb

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
require 'opal-haml'
2-
31
require File.expand_path('../simple', __FILE__)
42
require File.expand_path('../advanced', __FILE__)
53
require File.expand_path('../html_content', __FILE__)

0 commit comments

Comments
 (0)
Please sign in to comment.