haml 6.0.8 → 6.0.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9ff76f0fdc08205d557aad04a3701f7aad3df7badb119afe88c3a538fad318e8
4
- data.tar.gz: a9bae0ed0aab397b6718df223ae9d093c94b349ecf1a0c0306d7faa446c53e3f
3
+ metadata.gz: b7cac6caf4e6a000adb17458dd0b65665d4c3bf3ccc1aa63fd13373628b8c0a1
4
+ data.tar.gz: 2e86dff9c54de2af99face10d8e3910a46cbb5544075f76d402c88ad36d461af
5
5
  SHA512:
6
- metadata.gz: bdd2458541e841265ae99d5825a5d76fab8b977d8fd38ae110e19b73dbd1059616de97e6963d5feb42f15cc5b7648887646f4f6a17ec4fbe6aec883ef61865a6
7
- data.tar.gz: c3dd71673d91323183695d6d734102422caabad995b76574a7a11ec59703cfc31302df250f6a679e974c7f4f6be50eff6b44c06a0ad45a2d47257a259de07af8
6
+ metadata.gz: 8619598cd1bc18afc3b34d22ecd5537758489fe4b51455296e13688c1c52e5b5909232d6d8a3c702153f3b9bbf51769a8ce08b0b028a917ee026bcfd6222326b
7
+ data.tar.gz: ec437a3aa3de4e6327ff0335f0d27faa041fbc01c031af7bf22d4f72821d19941cf63f488d0744d3cfdb12034ebfd40c25999a16a86a998a2d0e5dfc4c020f25
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Haml Changelog
2
2
 
3
+ ## 6.0.9
4
+
5
+ * Support sass-embedded [#1112](https://github.com/haml/haml/issues/1112)
6
+
3
7
  ## 6.0.8
4
8
 
5
9
  * Support interpolation in HTML comments, which has not been working since 6.0.0
@@ -63,6 +67,8 @@ Released on September 21, 2022
63
67
  * The parser is kept as is, but everything else is replaced.
64
68
  * The `haml` CLI interface was also replaced.
65
69
  * The interface of `Haml::Engine` is changed. `Haml::Template` is most likely what you need now.
70
+ * before: `Haml::Engine.new("%p Haml code!").render`
71
+ * after: `Haml::Template.new { "%p Haml code!" }.render`
66
72
  * Most Haml helpers are removed.
67
73
  * Rails:
68
74
  * Kept: `find_and_reserve`, `preserve`, `surround`, `precede`, `succeed`, `capture_haml`
@@ -78,6 +84,8 @@ Released on September 21, 2022
78
84
  `defer`, `disabled`, `download`, `formnovalidate`, `hidden`, `inert`, `ismap`, `itemscope`, `loop`,
79
85
  `multiple`, `muted`, `novalidate`, `open`, `pubdate`, `readonly`, `required`, `reversed`, `scoped`,
80
86
  `seamless`, `selected`, `sortable`, `truespeed`, `typemustmatch`
87
+ * Only `data` and `aria` attributes support using a nested Hash to render hyphenated attributes, e.g.
88
+ `data: { foo: 'bar' }` becomes `data-foo="bar"`, but this no longer works for non-`data`/`aria` attributes.
81
89
  * Some legacy Rails integration is removed.
82
90
  * The default value of `escape_html` option became true.
83
91
  * `-` script lines no longer support capturing. Only `=` lines are supported to yield a nested block.
@@ -7,7 +7,11 @@ module Haml
7
7
  def self.render(name, source, indent_width: 0)
8
8
  text = ::Tilt["t.#{name}"].new { source }.render
9
9
  return text if indent_width == 0
10
- text.gsub!(/^/, ' ' * indent_width)
10
+ if text.frozen?
11
+ text.gsub(/^/, ' ' * indent_width)
12
+ else
13
+ text.gsub!(/^/, ' ' * indent_width)
14
+ end
11
15
  end
12
16
 
13
17
  def explicit_require?(needed_registration)
data/lib/haml/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module Haml
3
- VERSION = '6.0.8'
3
+ VERSION = '6.0.9'
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: haml
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.0.8
4
+ version: 6.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Natalie Weizenbaum
@@ -12,7 +12,7 @@ authors:
12
12
  autorequire:
13
13
  bindir: exe
14
14
  cert_chain: []
15
- date: 2022-10-29 00:00:00.000000000 Z
15
+ date: 2022-11-08 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: temple