rblade 0.2.5 → 0.3.0
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 +4 -4
- data/CHANGELOG.md +10 -0
- data/README.md +1803 -0
- data/lib/rblade/compiler/compiles_components.rb +34 -60
- data/lib/rblade/compiler/statements/compiles_loops.rb +12 -8
- data/lib/rblade/compiler/statements/compiles_props.rb +2 -2
- data/lib/rblade/compiler/tokenizes_components.rb +7 -2
- data/lib/rblade/component_store.rb +73 -14
- data/lib/rblade/helpers/attributes_manager.rb +6 -19
- data/lib/rblade/rails_template.rb +15 -2
- data/lib/rblade/railtie.rb +2 -1
- data/rblade.gemspec +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ef5b9a8269b2c4c7a05bef9a045928524729ff28d6456d5b5ac7a1cfb19e72e6
|
4
|
+
data.tar.gz: 4a30149ffb10cfedd65e14039c25cdc5e0704af2c206d77ecb1cda3433a8bf82
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 528d85be4a67b7e1581b1b99b130a03999afc6d15724ef50daf84cd68cd8f7437b68433ffe852d7b99f62e18f98a0cc053f4dc21bdd10a0ac682c08e23a234ea
|
7
|
+
data.tar.gz: b91a4065b7f0ad7ef85f35fa397579ba153fabba5a691350ba694f270e94744aa67a53cc75dba4dc085ad624d2d21b06c42323ae20366b173ba4367b60750c3d
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,13 @@
|
|
1
|
+
## 0.3.0 [2024-07-26]
|
2
|
+
- Add support for index component files
|
3
|
+
- Add support for relative components
|
4
|
+
- Add support for unsafe closing tags
|
5
|
+
- Allow direct access to attributes underlying hash
|
6
|
+
- Fix each statement with a key value pair
|
7
|
+
- Improve output of binary HTML attributes
|
8
|
+
- Improve performance of components
|
9
|
+
- Switch to .rblade file extensions
|
10
|
+
|
1
11
|
## 0.2.5 [2024-07-23]
|
2
12
|
- Improve how @props sets local variables
|
3
13
|
|