File tree Expand file tree Collapse file tree 4 files changed +18
-6
lines changed Expand file tree Collapse file tree 4 files changed +18
-6
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.1.5 2016-12-30
2
+ ### minor enhancements
3
+ * Fixed an error with Jekyll 3.3.0 and later https://github.com/samvincent/jekyll-haml/issues/19
4
+
1
5
## 0.1.4 2016-06-01
2
6
### minor enhancements
3
- * Fixed loss of content in layout conversion - ([ @sspreitzer ] [ ] )
7
+ * Fixed loss of content in layout conversion - ([ @sspreitzer ] [ ] )
4
8
5
9
## 0.1.3 2015-12-08
6
10
### minor enhancements
7
- * Fixed an error with Jekyll 2.3.0 (and probably with prior versions) that crashes when building the site - ([ @kalvinarts ] [ ] )
11
+ * Fixed an error with Jekyll 2.3.0 (and probably with prior versions) that crashes when building the site - ([@kalvinarts][])
8
12
9
13
## 0.1.2 2015-04-28
10
14
### minor enhancements
Original file line number Diff line number Diff line change @@ -17,6 +17,6 @@ Gem::Specification.new do |gem|
17
17
gem . test_files = gem . files . grep ( %r{^(test|spec|features)/} )
18
18
gem . require_paths = [ "lib" ]
19
19
20
- gem . add_runtime_dependency 'jekyll' , " >= 0.10.0"
21
- gem . add_runtime_dependency 'haml' , " >= 3.0.0"
20
+ gem . add_runtime_dependency 'jekyll' , ' >= 3.3.0'
21
+ gem . add_runtime_dependency 'haml' , ' >= 3.0.0'
22
22
end
Original file line number Diff line number Diff line change @@ -5,7 +5,15 @@ class Layout
5
5
6
6
def initialize ( *args )
7
7
old_initialize ( *args )
8
- self . content = self . transform
8
+ self . content = transform
9
+ end
10
+
11
+ def transform
12
+ _renderer . convert ( content )
13
+ end
14
+
15
+ def extname
16
+ ext
9
17
end
10
18
end
11
19
end
Original file line number Diff line number Diff line change 1
1
module Jekyll
2
2
module Haml
3
- VERSION = " 0.1.4"
3
+ VERSION = ' 0.1.5' . freeze
4
4
end
5
5
end
You can’t perform that action at this time.
0 commit comments