haml 6.2.3 → 6.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e0e28e40ec5137482caae5c2fb466d21976027139b3f39d428035dbd35914774
4
- data.tar.gz: c906550bd147f7e6a2961ebd07bc59fcc69b3433c454141cb2ae29e1ccd64e2b
3
+ metadata.gz: 35ca3f363ea3804867a60a4376ce6741d625f5bff0f76efb63c40f3b61258a47
4
+ data.tar.gz: 4fa86b2608fa197b3a59b2759ad91f60e5ecf12f67bce27d58debb7f387e4e8c
5
5
  SHA512:
6
- metadata.gz: '0583d8a879f6c7eda656d6c956a9e5573eedd5f94d14b28d378af85bbab73f220499b9c8021af0bad5946c95073cd1201d2d2765556e138696462bf2d28a4304'
7
- data.tar.gz: 2847f03720469d3eaabcc689f628198569f668b1c87c70f67422c70ed1af25103998cc004a86d9f430d57fb12f88078ef2fa27d544dad69ad9df95cc9241bfdd
6
+ metadata.gz: 7acba6590cfebf51d676a2d881aec06bdc6533fdc91d4a65a3f36d72b00110c925a0bedb1902414d7c62afc2dc78231419a75d3e6646f67268e9ee510d24782f
7
+ data.tar.gz: 9b3039ae16730220b43be25bced9de1e69537606309d3b701384f74ba53ec67240d6a69160000511f7dc76894c7da47714a1a01281fcc0069c2d92d91b4ca6c5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Haml Changelog
2
2
 
3
+ ## 6.2.4
4
+
5
+ * Support case-in statement [#1155](https://github.com/haml/haml/issues/1155)
6
+
3
7
  ## 6.2.3
4
8
 
5
9
  * Resurrect RDFa doctype support [#1147](https://github.com/haml/haml/issues/1147)
data/README.md CHANGED
@@ -146,12 +146,6 @@ Once this is complete, you should be able to run the test suite:
146
146
  rake
147
147
  ~~~
148
148
 
149
- You'll get a warning that you need to install haml-spec, so run this:
150
-
151
- ~~~sh
152
- git submodule update --init
153
- ~~~
154
-
155
149
  At this point `rake` should run without error or warning and you are ready to
156
150
  start working on your patch!
157
151
 
data/lib/haml/parser.rb CHANGED
@@ -78,7 +78,7 @@ module Haml
78
78
  #
79
79
  BLOCK_WITH_SPACES = /do\s*\|\s*[^\|]*\s+\|\z/
80
80
 
81
- MID_BLOCK_KEYWORDS = %w[else elsif rescue ensure end when].freeze
81
+ MID_BLOCK_KEYWORDS = %w[else elsif rescue ensure end when in].freeze
82
82
  START_BLOCK_KEYWORDS = %w[if begin case unless].freeze
83
83
  # Try to parse assignments to block starters as best as possible
84
84
  START_BLOCK_KEYWORD_REGEX = /(?:\w+(?:,\s*\w+)*\s*=\s*)?(#{START_BLOCK_KEYWORDS.join('|')})/
data/lib/haml/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module Haml
3
- VERSION = '6.2.3'
3
+ VERSION = '6.2.4'
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.3
4
+ version: 6.2.4
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: 2023-10-04 00:00:00.000000000 Z
15
+ date: 2023-12-09 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: temple
@@ -337,7 +337,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
337
337
  - !ruby/object:Gem::Version
338
338
  version: '0'
339
339
  requirements: []
340
- rubygems_version: 3.3.26
340
+ rubygems_version: 3.4.10
341
341
  signing_key:
342
342
  specification_version: 4
343
343
  summary: An elegant, structured (X)HTML/XML templating engine.