phlex 1.7.0 → 1.8.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of phlex might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5c0002c77419906adab684bd6e3bcb0ad2d5b7084aeb4e62f89c4f15a1da6001
4
- data.tar.gz: dea42d460e9cce5f3a4001dbe5d6cbfd155f2bafe725ed0a21f3bfc9bb050a39
3
+ metadata.gz: 463bbaade702e9495ee8965c20ca4c5aeb926b10a2e190584a0a0dfcc4f43709
4
+ data.tar.gz: f57de49b85bfc10920f890581656a7aa1c86d6d120ce45017c9fc0c355587514
5
5
  SHA512:
6
- metadata.gz: 22d4b19c21a14a60f8ff8cb2418bea2d553768b219cc9d491b44181580af17f4aeb804e0e4e0a875f959c74ab96b556f95fc5958e5ff4423f893cd7f07498a99
7
- data.tar.gz: 8512284569af79d553d74e16539292f1e68d10aad9224f0c1ec9698ef6d38c025bf20aa3a6c8b0db3533e21c03978980472d7c016148a9605e6fbf72caa0f0fe
6
+ metadata.gz: cf30a011b71eb056c093b0e0691e635b7fc60f3b2ed533fec63d65bd8c29ca5ddea794ac054a33c27cb2b79e8caab587299522707646c34c12a822a819aeba05
7
+ data.tar.gz: c8dc0e52c90c686e0824ee611afb303c8cdb8c9d9ebbb0293e1f0a0905e83a302499cabca54e44f2bddbe859ac43dd71d004f4f05b1feaf3dbd8d7f9696f24b8
data/.yardopts CHANGED
@@ -1 +1 @@
1
- --private --no-private --hide-api private --markup markdown
1
+ --private --hide-api private --markup markdown
data/CHANGELOG.md CHANGED
@@ -2,7 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
4
4
 
5
- ## 1.7.0
5
+ ## [1.8.0] 2024-04-19
6
+
7
+ ### Changed
8
+
9
+ - Support `Integer` and `Float` attribute values, and fall back to calling `to_str` on other objects.
10
+
11
+ ## [1.7.0] 2024-04-18
6
12
 
7
13
  ### Added
8
14
 
@@ -19,6 +25,7 @@ All notable changes to this project will be documented in this file. The format
19
25
  ### Removed
20
26
 
21
27
  - Removed the `menuitem` element as it's a deprecated HTML element.
28
+ - Removed the `SGML#text` method. This has been replaced with `SGML#plain`.
22
29
 
23
30
  ***
24
31
 
data/lib/phlex/sgml.rb CHANGED
@@ -337,7 +337,7 @@ module Phlex
337
337
  when Symbol
338
338
  @_context.target << ERB::Escape.html_escape(content.name)
339
339
  when Integer
340
- @_context.target << ERB::Escape.html_escape(content.to_s)
340
+ @_context.target << content.to_s
341
341
  when nil
342
342
  nil
343
343
  else
@@ -401,6 +401,8 @@ module Phlex
401
401
  buffer << " " << name << '="' << ERB::Escape.html_escape(v) << '"'
402
402
  when Symbol
403
403
  buffer << " " << name << '="' << ERB::Escape.html_escape(v.name) << '"'
404
+ when Integer, Float
405
+ buffer << " " << name << '="' << v.to_s << '"'
404
406
  when Hash
405
407
  __build_attributes__(
406
408
  v.transform_keys { |subkey|
@@ -415,7 +417,7 @@ module Phlex
415
417
  when Set
416
418
  buffer << " " << name << '="' << ERB::Escape.html_escape(v.to_a.compact.join(" ")) << '"'
417
419
  else
418
- raise ArgumentError, "Element attributes must be either a Boolean, a String, a Symbol, an Array of Strings or Symbols, or a Hash with values of one of these types"
420
+ buffer << " " << name << '="' << ERB::Escape.html_escape(v.to_str) << '"'
419
421
  end
420
422
  end
421
423
 
data/lib/phlex/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Phlex
4
- VERSION = "1.7.0"
4
+ VERSION = "1.8.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: phlex
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.0
4
+ version: 1.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joel Drapper
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-04-18 00:00:00.000000000 Z
11
+ date: 2023-04-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: concurrent-ruby