haml 6.2.4 → 6.3.0

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: 35ca3f363ea3804867a60a4376ce6741d625f5bff0f76efb63c40f3b61258a47
4
- data.tar.gz: 4fa86b2608fa197b3a59b2759ad91f60e5ecf12f67bce27d58debb7f387e4e8c
3
+ metadata.gz: b8754d03da194f9c74e620887cbc29d3aa95d93651129ca33aa60dc72be08dd1
4
+ data.tar.gz: f4d26ea914200ac345926641d0d0d8ba36fb4b62a47600f63015d5c2d1dc8a11
5
5
  SHA512:
6
- metadata.gz: 7acba6590cfebf51d676a2d881aec06bdc6533fdc91d4a65a3f36d72b00110c925a0bedb1902414d7c62afc2dc78231419a75d3e6646f67268e9ee510d24782f
7
- data.tar.gz: 9b3039ae16730220b43be25bced9de1e69537606309d3b701384f74ba53ec67240d6a69160000511f7dc76894c7da47714a1a01281fcc0069c2d92d91b4ca6c5
6
+ metadata.gz: eccf9fb6676267281b3c918425e93f07e8771c2f41e8481a08f327cb2ddbd5b53e07f3c9025f37c1abc977ad732d3b2f67d3023c4e1f356897bed03e3572ca20
7
+ data.tar.gz: 5ecd4d17716d5b0b4be7b57ebcfd28457f1b803cd376e37d4bcece2f30632e4e46d988eba1048e0c303a3599db5049b464e31854dda7f538bfe30565169769e9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Haml Changelog
2
2
 
3
+ ## 6.3.0
4
+
5
+ * Remove `Haml::RailsTemplate#default_format` that was added in v6.1.3 for Turbo [#1152](https://github.com/haml/haml/issues/1152), [#1154](https://github.com/haml/haml/issues/1154) ([discussion](https://github.com/haml/haml/pull/1144#issuecomment-1755088572))
6
+ * See [the reference](https://github.com/haml/haml/blob/v6.3.0/REFERENCE.md#turbo) for suggested alternatives.
7
+
8
+ ## 6.2.5
9
+
10
+ * Deprecate `Haml::RailsTemplate#default_format` that was added in v6.1.3 for Turbo ([discussion](https://github.com/haml/haml/pull/1144#issuecomment-1755088572))
11
+ * See [the reference](https://github.com/haml/haml/blob/v6.2.5/REFERENCE.md#turbo) for suggested alternatives.
12
+
3
13
  ## 6.2.4
4
14
 
5
15
  * Support case-in statement [#1155](https://github.com/haml/haml/issues/1155)
data/REFERENCE.md CHANGED
@@ -1295,3 +1295,22 @@ automatically, and so should be passed through
1295
1295
  same effect.
1296
1296
 
1297
1297
  Blocks of literal text can be preserved using the [`:preserve` filter](#preserve-filter).
1298
+
1299
+ ## Turbo
1300
+
1301
+ For people using Turbo-rails and Haml 6+ need to either:
1302
+ * follow the naming convention with the html format (ie. ensure any `.haml` files end `.html.haml`), or
1303
+ * add a monkey patch as follows:
1304
+
1305
+ ```rb
1306
+ # config/initializers/haml.rb
1307
+ require "haml/rails_template"
1308
+
1309
+ module Haml
1310
+ class RailsTemplate
1311
+ def default_format
1312
+ :html
1313
+ end
1314
+ end
1315
+ end
1316
+ ```
@@ -48,11 +48,6 @@ module Haml
48
48
  Engine.new(options).call(source)
49
49
  end
50
50
 
51
- # Rails Turbo looks for this
52
- def default_format
53
- :html
54
- end
55
-
56
51
  def supports_streaming?
57
52
  RailsTemplate.options[:streaming]
58
53
  end
data/lib/haml/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module Haml
3
- VERSION = '6.2.4'
3
+ VERSION = '6.3.0'
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.2.4
4
+ version: 6.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Natalie Weizenbaum
@@ -9,10 +9,10 @@ authors:
9
9
  - Norman Clarke
10
10
  - Akira Matsuda
11
11
  - Takashi Kokubun
12
- autorequire:
12
+ autorequire:
13
13
  bindir: exe
14
14
  cert_chain: []
15
- date: 2023-12-09 00:00:00.000000000 Z
15
+ date: 2023-12-10 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: temple
@@ -322,7 +322,7 @@ licenses:
322
322
  - MIT
323
323
  metadata:
324
324
  rubygems_mfa_required: 'true'
325
- post_install_message:
325
+ post_install_message:
326
326
  rdoc_options: []
327
327
  require_paths:
328
328
  - lib
@@ -338,7 +338,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
338
338
  version: '0'
339
339
  requirements: []
340
340
  rubygems_version: 3.4.10
341
- signing_key:
341
+ signing_key:
342
342
  specification_version: 4
343
343
  summary: An elegant, structured (X)HTML/XML templating engine.
344
344
  test_files: []