heartml 1.0.0.beta9 → 1.0.0.beta10

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: 45a181e4dbbe1346219242f7f6bb784909e0c4434c5460a8c604e82b16277d2a
4
- data.tar.gz: 8848dd62e0186758310195aa36908bcfb8ab074cc1ac26d680848b2dc4fefdde
3
+ metadata.gz: fc39b8b95e3a14342d16f006483ff3db734c3db584894ae45c7da44cedf5e906
4
+ data.tar.gz: 19329707440f40285e43855688f1168272cdbc226ded81b41829f27dfeabdc02
5
5
  SHA512:
6
- metadata.gz: be785fe5ef3d2bcbc15422abc073af1387b8c6cc5219ed7fa5d4454fa341bc1acc17a94a46e2a89904ac5d93835fdf335d08c4fe2420952fe7de554237ad62ed
7
- data.tar.gz: 19e2a61d7693cdd78a50434fa1d27b6f694f397b28733d1315519b0602eeea650cfa3372faac9b68f81ad2578882b1b115b8ad129995a130d33c9ca8fa3b5a88
6
+ metadata.gz: 5c11daaeee5d6a15636597fed5923ee9c5dcec0a877613dfa1b4750522d34d82700fc331e19fb8a89be2cbb85627996ae67f1631259aa725403b003ff0a98a6d
7
+ data.tar.gz: 8ba6afd0cf152cf35541f1873a598284b79b8d838043cb44488d4a17ef25a9544886d5e563845db2e072885e2e15a6bbeb25464832213fa49a79024986a134fa
data/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [1.0.0.beta10] - 2023-02-27
6
+
7
+ - Add the `$attribute` directive so iso effects will work
8
+
5
9
  ## [1.0.0.beta9] - 2023-02-24
6
10
 
7
11
  - Use `@attributes` by default
data/CODE_OF_CONDUCT.md CHANGED
@@ -39,7 +39,7 @@ This Code of Conduct applies within all community spaces, and also applies when
39
39
 
40
40
  ## Enforcement
41
41
 
42
- Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at jared@jaredwhite.com. All complaints will be reviewed and investigated promptly and fairly.
42
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at jared@whitefusion.studio. All complaints will be reviewed and investigated promptly and fairly.
43
43
 
44
44
  All community leaders are obligated to respect the privacy and security of the reporter of any incident.
45
45
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- heartml (1.0.0.beta9)
4
+ heartml (1.0.0.beta10)
5
5
  concurrent-ruby (~> 1.2)
6
6
  nokolexbor (>= 0.4.2)
7
7
 
@@ -54,6 +54,10 @@ module Heartml
54
54
  node.add_class k.to_s if v
55
55
  end
56
56
  }
57
+
58
+ directive :attribute, ->(_, node, name, value) {
59
+ node[name] = value
60
+ }
57
61
  end
58
62
  end
59
63
 
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Heartml
4
4
  # @return [String]
5
- VERSION = "1.0.0.beta9"
5
+ VERSION = "1.0.0.beta10"
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: heartml
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.beta9
4
+ version: 1.0.0.beta10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jared White
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-24 00:00:00.000000000 Z
11
+ date: 2024-02-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: concurrent-ruby